38 lines
743 B
TypeScript
38 lines
743 B
TypeScript
import React from 'react'
|
|
|
|
import IconProps from './types/icon-type'
|
|
|
|
const ArrowDownIcon: React.FC<IconProps> = ({
|
|
size = '24px',
|
|
color = 'currentColor',
|
|
...attributes
|
|
}) => {
|
|
return (
|
|
<svg
|
|
width={size}
|
|
height={size}
|
|
viewBox="0 0 16 16"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
{...attributes}
|
|
>
|
|
<path
|
|
d="M8 3.33331V12.6666"
|
|
stroke={color}
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M12.667 8L8.00033 12.6667L3.33366 8"
|
|
stroke={color}
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
export default ArrowDownIcon
|