@material-tailwind/react
Version:
@material-tailwind/react is an easy-to-use components library for ReactJS & Tailwind CSS inspired by Material Design.
26 lines • 1.1 kB
TypeScript
import type { ReactNode } from "react";
import type { colors } from "../generic";
/**
* This file contains the types and prop-types for Badge component.
*/
export type color = "white" | colors;
export type invisible = boolean;
export type withBorder = boolean;
export type overlap = "circular" | "square";
export type placement = "top-start" | "top-end" | "bottom-start" | "bottom-end";
export type className = string;
export type content = ReactNode;
export type children = ReactNode;
export type containerProps = React.HTMLAttributes<HTMLDivElement>;
export type containerRef = React.Ref<HTMLDivElement>;
export declare const propTypesColor: any;
export declare const propTypesInvisible: any;
export declare const propTypesWithBorder: any;
export declare const propTypesOverlap: any;
export declare const propTypesPlacement: any;
export declare const propTypesClassName: any;
export declare const propTypesContent: any;
export declare const propTypesChildren: any;
export declare const propTypesContainerProps: any;
export declare const propTypesContainerRef: any;
//# sourceMappingURL=badge.d.ts.map