UNPKG

welcome-ui

Version:

Customizable design system with react, typescript, tailwindcss and ariakit.

10 lines (9 loc) 739 B
import { default as React } from 'react'; import { ButtonProps } from '../Button/types'; import { AlertProps, AlertTitleProps } from './types'; export declare const AlertTitle: ({ children, hasCloseButton, variant, ...rest }: AlertTitleProps) => import("react/jsx-runtime").JSX.Element; export declare const Alert: React.ForwardRefExoticComponent<Omit<AlertProps, "ref"> & React.RefAttributes<HTMLDivElement>> & { Button: import('../../utils').FunctionComponentWithAs<"button", Omit<ButtonProps, "size">>; SecondaryButton: import('../../utils').FunctionComponentWithAs<"button", Omit<ButtonProps, "size">>; Title: ({ children, hasCloseButton, variant, ...rest }: AlertTitleProps) => import("react/jsx-runtime").JSX.Element; };