UNPKG

soignant-nomade-ui

Version:

A react library for the soignant-nomade design system. You can find a storybook project inside it

9 lines (8 loc) 245 B
/// <reference types="react" /> import { TColor } from "../utils/color"; interface AlertProps { children: React.ReactNode; color: TColor; } export declare const Alert: ({ children, color }: AlertProps) => JSX.Element; export {};