New feature: category selection in newBookmarkForm
parent
ba51727c55
commit
fb212410cc
@ -0,0 +1,21 @@
|
|||||||
|
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>
|
||||||
|
)
|
||||||
Loading…
Reference in New Issue