UNPKG

@material-tailwind/react

Version:

@material-tailwind/react is an easy-to-use components library for ReactJS & Tailwind CSS inspired by Material Design.

12 lines 503 B
import React from "react"; import { MotionProps } from "framer-motion"; import { open, animate, className, children } from "../../types/components/navbar"; export interface MobileNavProps extends Omit<MotionProps, "animate"> { open: open; animate?: animate; className?: className; children: children; } export declare const MobileNav: React.ForwardRefExoticComponent<MobileNavProps & React.RefAttributes<HTMLDivElement>>; export default MobileNav; //# sourceMappingURL=MobileNav.d.ts.map