mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
11 lines
277 B
TypeScript
11 lines
277 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Key = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<circle cx="128" cy="140" r="44" />
|
|
<line x1="128" y1="96" x2="128" y2="24" />
|
|
<line x1="128" y1="48" x2="160" y2="48" />
|
|
</Icon>
|
|
)
|