@primer/react
Version:
An implementation of GitHub's Primer Design System using React
13 lines (12 loc) • 450 B
TypeScript
import React from 'react';
import { SxProp } from '../sx';
export type ActionListDescriptionProps = {
/**
* 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<React.PropsWithChildren<ActionListDescriptionProps>>;