UNPKG

norma-library

Version:

Olos/Norma-DS. Design System based on Material UI, developed with TypeScript and Styled Components to create reusable and consistent components in web applications.

13 lines (12 loc) 362 B
import React from 'react'; import { TabsProps } from '@mui/material/Tabs'; import { ColorVariant } from '@/types'; interface StyledTabProps { label: string; color: ColorVariant; } export declare const NormaTabs: React.ComponentType<TabsProps & { color: ColorVariant; }>; export declare const NormaTab: React.ComponentType<StyledTabProps>; export {};