UNPKG

@sikka/hawa

Version:

Modern UI Kit made with Tailwind

19 lines (16 loc) 621 B
import { FC } from 'react'; import { O as OrientationType } from '../commonTypes-DinbCdmt.mjs'; type TypographyTypes = { /** Function to handle language change. */ handleLanguage?: (e: any) => void; /** Current selected language. */ currentLanguage?: string; /** Function to handle theme color mode change. */ handleColorMode?: (e: any) => void; /** Current selected theme color mode. */ currentColorMode?: "light" | "dark"; orientation?: OrientationType; width?: "default" | "full"; }; declare const InterfaceSettings: FC<TypographyTypes>; export { InterfaceSettings };