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) 360 B
import type { TypographyProps } from './Typography'; export declare type BaseType = 'secondary' | 'success' | 'warning' | 'danger'; export interface BlockProps extends TypographyProps { title?: string; type?: BaseType; code?: boolean; mark?: boolean; underline?: boolean; delete?: boolean; strong?: boolean; italic?: boolean; }