UNPKG

material-you-react

Version:

Material You: Material You (M3) Design system and its components for simple integration with Next.Js or other react-based frameworks

12 lines (11 loc) 424 B
import React from "react"; import { ScaffoldHost } from "./ScaffoldContext"; type ScaffoldProps = { children?: React.ReactNode | ((props: ScaffoldHost | null) => React.ReactNode); appBar?: React.ReactNode; fab?: React.ReactNode; bottomAppBar?: React.ReactElement; drawer?: React.ReactNode; }; declare const Scaffold: ({ children, ...props }: ScaffoldProps) => React.JSX.Element; export default Scaffold;