mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
12 lines
342 B
TypeScript
12 lines
342 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const LockKey = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<rect x="40" y="88" width="176" height="128" rx="8" />
|
|
<path d="M88 88V56a40 40 0 0 1 80 0v32" />
|
|
<circle cx="128" cy="144" r="24" />
|
|
<line x1="128" y1="168" x2="128" y2="192" />
|
|
</Icon>
|
|
)
|