mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 14:54:55 +00:00
13 lines
345 B
TypeScript
13 lines
345 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const IdCard = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<rect x="32" y="56" width="192" height="144" rx="16" />
|
|
<circle cx="96" cy="120" r="20" />
|
|
<path d="M64 168c16-20 48-20 64 0" />
|
|
<path d="M144 112h48" />
|
|
<path d="M144 144h48" />
|
|
</Icon>
|
|
)
|