mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
10 lines
263 B
TypeScript
10 lines
263 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const LockOpen = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<rect x="40" y="88" width="176" height="128" rx="8" />
|
|
<path d="M88 88V56a40 40 0 0 1 80 0" fill="none" />
|
|
</Icon>
|
|
)
|