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

23 lines (22 loc) 803 B
import { ReactNode } from 'react'; import * as React from 'react'; interface AlertProps { message?: string; funcss?: string; type?: 'success' | 'info' | 'warning' | 'danger'; 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; } export default function Alert({ message, funcss, type, outlined, fixed, raised, fullWidth, isLoading, children, animation, duration, variant, flat, standard, card, style, ...rest }: AlertProps): any; export {};