️ feat: create chevron doublw down icon component

This commit is contained in:
Wahyu Kurniawan 2024-03-14 21:50:11 +07:00
parent 3674750011
commit d50a318e16
No known key found for this signature in database
GPG Key ID: 040A1549143A8E33
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,20 @@
import React from 'react';
import { CustomIcon, CustomIconProps } from './CustomIcon';
export const ChevronDoubleDownIcon = (props: CustomIconProps) => {
return (
<CustomIcon
width="20"
height="21"
viewBox="0 0 20 21"
fill="none"
{...props}
>
<path
d="M6.66699 12.0174L10.0003 15.3507L13.3337 12.0174M6.66699 6.18408L10.0003 9.51742L13.3337 6.18408"
stroke="currentColor"
strokeLinecap="square"
/>
</CustomIcon>
);
};

View File

@ -61,6 +61,7 @@ export * from './CirclePlaceholderOnIcon';
export * from './WarningTriangleIcon';
export * from './CheckRadioOutlineIcon';
export * from './TrendingIcon';
export * from './ChevronDoubleDownIcon';
// Templates
export * from './templates';