UNPKG

@primer/components

Version:
13 lines (12 loc) 413 B
import React from 'react'; import { SxProp } from '../sx'; export declare type DescriptionProps = { /** * Secondary text style variations. * * - `"inline"` - Secondary text is positioned beside primary text. * - `"block"` - Secondary text is positioned below primary text. */ variant?: 'inline' | 'block'; } & SxProp; export declare const Description: React.FC<DescriptionProps>;