31 lines
568 B
TypeScript
31 lines
568 B
TypeScript
import React from 'react'
|
|
|
|
import IconProps from './types/icon-type'
|
|
|
|
const ChevronUpIcon: React.FC<IconProps> = ({
|
|
size = '24px',
|
|
color = 'currentColor',
|
|
...attributes
|
|
}) => {
|
|
return (
|
|
<svg
|
|
width={size}
|
|
height={size}
|
|
viewBox="0 0 20 20"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
{...attributes}
|
|
>
|
|
<path
|
|
d="M5 12.5L10 7.5L15 12.5"
|
|
stroke={color}
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
export default ChevronUpIcon
|