UNPKG

@theme-ui/components

Version:

Primitive layout, typographic, and other components for use with Theme UI.

11 lines (10 loc) 370 B
import { BoxProps } from './Box'; import { ForwardRef } from './types'; export declare type MessageProps = BoxProps; /** * Styled Box component for callouts and inline messages * * Message variants can be defined in the theme.messages object. * @see https://theme-ui.com/components/message */ export declare const Message: ForwardRef<HTMLDivElement, MessageProps>;