UNPKG

@devfamily/admiral

Version:

Admiral is a frontend framework for creating back office using React. It provides out-of-the-box components and tools that make developing an admin interface easy and fast.

13 lines (12 loc) 394 B
import React from 'react'; export interface TypographyProps { id?: string; className?: string; style?: React.CSSProperties; children?: React.ReactNode; } interface InternalTypographyProps extends TypographyProps { component?: string; } declare const _default: React.ForwardRefExoticComponent<InternalTypographyProps & React.RefAttributes<unknown>>; export default _default;