Files
metabuilder/icons/react/fakemui/CheckBoxOutlineBlank.tsx
2026-03-09 22:30:41 +00:00

9 lines
219 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const CheckBoxOutlineBlank = (props: IconProps) => (
<Icon {...props}>
<rect x="40" y="40" width="176" height="176" rx="8" />
</Icon>
)