forked from cerc-io/snowballtools-base
🔧 chore: add icons
This commit is contained in:
parent
33aa75e341
commit
ee35e64f69
@ -0,0 +1,22 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import { CustomIcon, CustomIconProps } from './CustomIcon';
|
||||||
|
|
||||||
|
export const BuildingIcon = (props: CustomIconProps) => {
|
||||||
|
return (
|
||||||
|
<CustomIcon
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
{...props}
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
d="M3.75 19.25H14.25M3.75 19.25V5.75C3.75 4.64543 4.64543 3.75 5.75 3.75H12.25C13.3546 3.75 14.25 4.64543 14.25 5.75V8M3.75 19.25H1.75M14.25 19.25V8M14.25 19.25H20.25M14.25 8H18.25C19.3546 8 20.25 8.89543 20.25 10V19.25M20.25 19.25H22.25M10.25 8.75H7.75M7.75 12.75H10.25"
|
||||||
|
stroke="currentColor"
|
||||||
|
strokeWidth="1.5"
|
||||||
|
strokeLinecap="round"
|
||||||
|
strokeLinejoin="round"
|
||||||
|
/>
|
||||||
|
</CustomIcon>
|
||||||
|
);
|
||||||
|
};
|
@ -0,0 +1,21 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import { CustomIcon, CustomIconProps } from './CustomIcon';
|
||||||
|
|
||||||
|
export const ChevronUpDown = (props: CustomIconProps) => {
|
||||||
|
return (
|
||||||
|
<CustomIcon
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
{...props}
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
d="M8 15L12 19L16 15M8 9L12 5L16 9"
|
||||||
|
stroke="currentColor"
|
||||||
|
strokeLinecap="round"
|
||||||
|
strokeLinejoin="round"
|
||||||
|
/>
|
||||||
|
</CustomIcon>
|
||||||
|
);
|
||||||
|
};
|
@ -4,6 +4,7 @@ export * from './CheckIcon';
|
|||||||
export * from './ChevronGrabberHorizontal';
|
export * from './ChevronGrabberHorizontal';
|
||||||
export * from './ChevronLeft';
|
export * from './ChevronLeft';
|
||||||
export * from './ChevronRight';
|
export * from './ChevronRight';
|
||||||
|
export * from './ChevronUpDown';
|
||||||
export * from './InfoSquareIcon';
|
export * from './InfoSquareIcon';
|
||||||
export * from './WarningIcon';
|
export * from './WarningIcon';
|
||||||
export * from './SearchIcon';
|
export * from './SearchIcon';
|
||||||
@ -26,6 +27,7 @@ export * from './GithubIcon';
|
|||||||
export * from './GitTeaIcon';
|
export * from './GitTeaIcon';
|
||||||
export * from './LockIcon';
|
export * from './LockIcon';
|
||||||
export * from './PencilIcon';
|
export * from './PencilIcon';
|
||||||
|
export * from './BuildingIcon';
|
||||||
export * from './CheckRadioIcon';
|
export * from './CheckRadioIcon';
|
||||||
export * from './ChevronDownIcon';
|
export * from './ChevronDownIcon';
|
||||||
export * from './BranchIcon';
|
export * from './BranchIcon';
|
||||||
|
Loading…
Reference in New Issue
Block a user