UNPKG

@devopness/ui-react

Version:

Devopness Design System React Components - Painless essential DevOps to everyone

11 lines (10 loc) 402 B
import { default as React } from 'react'; import { TypographyProps } from '@mui/material/Typography'; type TextProps = { className: string; children: React.ReactNode; variant?: TypographyProps['variant'] | 'span'; isSmall?: boolean; }; declare const Text: ({ children, className, variant, isSmall, ...restProps }: TextProps) => import("react/jsx-runtime").JSX.Element; export { Text };