File size: 425 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | export {
AlertTitle as Title,
AlertDescription as Description,
AlertIndicator as Indicator,
AlertRoot as Root,
AlertPropsProvider as RootPropsProvider,
AlertContent as Content,
} from "./alert"
export type {
AlertRootProps as RootProps,
AlertTitleProps as TitleProps,
AlertDescriptionProps as DescriptionProps,
AlertContentProps as ContentProps,
AlertIndicatorProps as IndicatorProps,
} from "./alert"
|