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) 286 B
import React from "react"; type TabProps = { children: React.ReactNode; }; /** * A Tab Component used for moving from one page to another. * * `TabPrimary` | `TabSecondary` are accepted as children. */ export default function Tab(props: TabProps): React.JSX.Element; export {};