UNPKG

nice-ui

Version:

React design system, components, and utilities

16 lines (15 loc) 415 B
import * as React from 'react'; export interface Props { /** @todo Rename ot "size". */ width?: number; name?: string; hideName?: boolean; subtext?: React.ReactNode; grey?: boolean; lightGrey?: boolean; spacious?: boolean; you?: boolean; onNameClick?: React.MouseEventHandler; onSubtextClick?: React.MouseEventHandler; } export declare const LabelRight: React.FC<Props>;