UNPKG

@snowball-tech/fractal

Version:

Fractal's (Snowball's design system) React component library based on RadixUI and TailwindCSS

15 lines (14 loc) 445 B
import { Sizes } from "./Avatar.constants.js"; import { AllHTMLAttributes, ReactNode } from "react"; //#region src/components/Avatar/Avatar.types.d.ts interface AvatarProps extends Omit<AllHTMLAttributes<HTMLImageElement>, 'size'> { children?: ReactNode; disabled?: boolean; imageUrl?: string; name?: string; rawChildren?: boolean; size?: `${Sizes}`; } //#endregion export { AvatarProps }; //# sourceMappingURL=Avatar.types.d.ts.map