@material-tailwind/react
Version:
@material-tailwind/react is an easy-to-use components library for ReactJS & Tailwind CSS inspired by Material Design.
24 lines • 921 B
TypeScript
import type { ReactNode } from "react";
import type { colors, animation } from "../generic";
/**
* This file contains the types and prop-types for Navbar component.
*/
export type variant = "filled" | "gradient";
export type color = "transparent" | "white" | colors;
export type shadow = boolean;
export type blurred = boolean;
export type fullWidth = boolean;
export type className = string;
export type children = ReactNode;
export type open = boolean;
export type animate = animation;
export declare const propTypesVariant: any;
export declare const propTypesColor: any;
export declare const propTypesShadow: any;
export declare const propTypesBlurred: any;
export declare const propTypesFullWidth: any;
export declare const propTypesClassName: any;
export declare const propTypesChildren: any;
export declare const propTypesOpen: any;
export declare const propTypesAnimate: any;
//# sourceMappingURL=navbar.d.ts.map