forked from cerc-io/snowballtools-base
22 lines
499 B
TypeScript
22 lines
499 B
TypeScript
import { CustomIcon, CustomIconProps } from './CustomIcon';
|
|
|
|
export const ChevronDownIcon = (props: CustomIconProps) => {
|
|
return (
|
|
<CustomIcon
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
{...props}
|
|
>
|
|
<path
|
|
d="M20 9L13.4142 15.5858C12.6332 16.3668 11.3669 16.3668 10.5858 15.5858L4 9"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</CustomIcon>
|
|
);
|
|
};
|