UNPKG

welcome-ui

Version:

Customizable design system with react • styled-components • styled-system and ariakit.

10 lines (9 loc) 285 B
import { default as React } from 'react'; import { TextProps } from '../Text'; export type AlertTitleProps = Pick<TextProps, 'children' | 'dataTestId' | 'variant'> & { hasCloseButton?: boolean; }; /** * @name Alert.Title */ export declare const Title: React.FC<AlertTitleProps>;