@material-tailwind/react
Version:
@material-tailwind/react is an easy-to-use components library for ReactJS & Tailwind CSS inspired by Material Design.
15 lines • 587 B
TypeScript
import type { colors } from "../generic";
/**
* This file contains the types and prop-types for Avatar component.
*/
export type variant = "circular" | "rounded" | "square";
export type size = "xs" | "sm" | "md" | "lg" | "xl" | "xxl";
export type className = string;
export type withBorder = boolean;
export type color = colors;
export declare const propTypesVariant: any;
export declare const propTypesSize: any;
export declare const propTypesClassName: any;
export declare const propTypesWithBorder: any;
export declare const propTypesColor: any;
//# sourceMappingURL=avatar.d.ts.map