diff --git a/src/components/Icon/MoreHorizontalIcon.tsx b/src/components/Icon/MoreHorizontalIcon.tsx new file mode 100644 index 00000000..98110b3f --- /dev/null +++ b/src/components/Icon/MoreHorizontalIcon.tsx @@ -0,0 +1,8 @@ +import React from 'react'; +import icon from 'teenyicons/outline/more-horizontal.svg'; + +import { BaseIcon, BaseIconProps } from './BaseIcon'; + +export const MoreHorizontalIcon = React.forwardRef>((props, ref) => ( + +)); diff --git a/src/components/Icon/index.ts b/src/components/Icon/index.ts index 413b08d7..44c25643 100644 --- a/src/components/Icon/index.ts +++ b/src/components/Icon/index.ts @@ -55,3 +55,4 @@ export * from './TelegramIcon'; export * from './PinAltIcon'; export * from './AddSmallIcon'; export * from './DividerLineIcon'; +export * from './MoreHorizontalIcon';