-
-
Save ashimon83/0cd918963ac7d2dbf0a713a6d6cc3c12 to your computer and use it in GitHub Desktop.
svgr component result
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as React from 'react' | |
import { SVGProps } from 'react' | |
const SvgChevronNormal = (props: SVGProps<SVGSVGElement>) => ( | |
<svg | |
viewBox='0 0 23 40' | |
fill='none' | |
xmlns='http://www.w3.org/2000/svg' | |
{...props} | |
> | |
<path | |
d='M23 20c0-.525-.204-.975-.587-1.35L3.213.525C2.856.175 2.397 0 1.86 0 .816 0 0 .775 0 1.825c0 .5.204.95.535 1.3L18.41 20 .535 36.85c-.331.35-.535.775-.535 1.3C0 39.2.816 40 1.861 40c.536 0 .995-.2 1.352-.55l19.2-18.125C22.796 20.95 23 20.5 23 20Z' | |
fill='currentColor' | |
/> | |
</svg> | |
) | |
export default SvgChevronNormal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment