mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
- Installed @types/node to resolve type definition errors - Generated Prisma client from root schema - Created fakemui/icons/types.ts with IconProps interface - Reduced fakemui errors from 34 to 26 - Maintained ZERO errors in application code - All remaining 26 errors are in fakemui external library (JSX namespace issues, missing exports) Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
8 lines
200 B
TypeScript
8 lines
200 B
TypeScript
import { SVGProps } from 'react'
|
|
|
|
export interface IconProps extends SVGProps<SVGSVGElement> {
|
|
size?: number
|
|
color?: string
|
|
weight?: 'thin' | 'light' | 'regular' | 'bold' | 'fill' | 'duotone'
|
|
}
|