UNPKG

retabler

Version:

React Component library via Tabler

40 lines (39 loc) 1.03 kB
import React from "react"; declare const Page: { ({ children }: { children: any; }): JSX.Element; Header: ({ children }: { children: any; }) => JSX.Element; Pretitle: ({ children }: { children: any; }) => JSX.Element; Title: ({ children }: { children: any; }) => JSX.Element; SubTitle: ({ children }: { children: any; }) => JSX.Element; Options: ({ children }: { children: any; }) => JSX.Element; Content: ({ children }: { children: any; }) => JSX.Element; Footer: ({ children }: { children: any; }) => JSX.Element; SubFooter: ({ children }: { children: any; }) => JSX.Element; Container: ({ children, size }: ContainerProps) => JSX.Element; Empty: ({ children }: { children: any; }) => JSX.Element; }; interface ContainerProps { children: React.ReactNode; size?: "md" | "lg" | "xl" | "fluid"; } export default Page;