UNPKG

funuicss

Version:

React and Next.js component UI Library for creating Easy and good looking websites with fewer lines of code. Elevate your web development experience with our cutting-edge React/Next.js component UI Library. Craft stunning websites effortlessly, boasting b

25 lines (24 loc) 916 B
import React, { ReactNode } from 'react'; interface AlertProps { message?: string; funcss?: string; type?: 'success' | 'info' | 'warning' | 'error'; outlined?: boolean; fixed?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'top-middle' | 'bottom-middle' | 'middle'; fullWidth?: boolean; isLoading?: boolean; children?: ReactNode; animation?: string; duration?: string; raised?: boolean; card?: boolean; variant?: string; flat?: boolean; standard?: boolean; style?: React.CSSProperties; autoHide?: boolean; autoHideDuration?: number; onClose?: () => void; } export default function Alert({ message, funcss, type, outlined, fixed, raised, fullWidth, isLoading, children, animation, duration, variant, flat, standard, card, style, autoHide, autoHideDuration, onClose, ...rest }: AlertProps): React.JSX.Element | null; export {};