UNPKG

surf-design-system

Version:
15 lines (14 loc) 544 B
/** @jsxRuntime classic */ /** @jsx jsx */ import type { sizeSDS, validationSDS } from '../types/common'; export interface HelptextStyleProps { wordBreak?: string; whiteSpace?: string; } export interface HelptextProps extends HelptextStyleProps { children?: React.ReactNode; size?: sizeSDS; disabled?: boolean; validation?: validationSDS; } export default function Helptext({ children, size, disabled, validation, wordBreak, whiteSpace, }: HelptextProps): import("@emotion/react/jsx-runtime").JSX.Element;