You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
468 B
TypeScript
22 lines
468 B
TypeScript
import React from 'react'
|
|
export const ChevronDownIcon = ({ strokeWidth = 1.5, ...otherProps }) => (
|
|
<svg
|
|
aria-hidden='true'
|
|
fill='none'
|
|
focusable='false'
|
|
height='1em'
|
|
role='presentation'
|
|
viewBox='0 0 24 24'
|
|
width='1em'
|
|
{...otherProps}>
|
|
<path
|
|
d='m19.92 8.95-6.52 6.52c-.77.77-2.03.77-2.8 0L4.08 8.95'
|
|
stroke='currentColor'
|
|
strokeLinecap='round'
|
|
strokeLinejoin='round'
|
|
strokeMiterlimit={10}
|
|
strokeWidth={strokeWidth}
|
|
/>
|
|
</svg>
|
|
)
|