Files
react/lib/components/anchor/anchor-icon.tsx
2020-04-03 14:41:51 +08:00

15 lines
498 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