Files
react/lib/components/anchor/anchor-icon.tsx
2020-05-06 14:25:10 +08:00

23 lines
546 B
TypeScript

import React from 'react'
const AnchorIcon = () => {
return (
<svg
viewBox="0 0 24 24"
width="100%"
height="100%"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
shapeRendering="geometricPrecision"
style={{ color: 'currentColor' }}>
<path d="M10 13a5 5 0 007.54.54l3-3a5 5 0 00-7.07-7.07l-1.72 1.71" />
<path d="M14 11a5 5 0 00-7.54-.54l-3 3a5 5 0 007.07 7.07l1.71-1.71" />
</svg>
)
}
export default AnchorIcon