Skip to content

Commit

Permalink
feat(add): column-icon
Browse files Browse the repository at this point in the history
Signed-off-by: Sudhanshu Dasgupta <[email protected]>
  • Loading branch information
sudhanshutech committed Oct 6, 2023
1 parent 8c0c50b commit aeb064f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
19 changes: 19 additions & 0 deletions packages/svg/src/icons/Column/columnIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { FC } from 'react';
import { IconProps } from '../types';

export const ColumnIcon: FC<IconProps> = ({ width, height, ...props }) => {
return (
<svg
width={width}
height={height}
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="#00D3A9"
{...props}
>
<path d="M120-200v-560h220v560H120Zm250 0v-560h220v560H370Zm250 0v-560h220v560H620Z" />
</svg>
);
};

export default ColumnIcon;
1 change: 1 addition & 0 deletions packages/svg/src/icons/Column/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as ColumnIcon } from './columnIcon';

0 comments on commit aeb064f

Please sign in to comment.