mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
10 lines
249 B
TypeScript
10 lines
249 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Pin = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<line x1="96" y1="160" x2="40" y2="216" />
|
|
<path d="M176 32l48 48-32 32 8 64-80-80 64-8-8-56Z" />
|
|
</Icon>
|
|
)
|