flowbite-svelte
Version:
Flowbite components for Svelte
23 lines (22 loc) • 631 B
TypeScript
import { type AlertProps } from "..";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [AlertProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L226)
* ## Props
* @prop children
* @prop icon
* @prop alertStatus = $bindable(true)
* @prop closeIcon: CloseIcon
* @prop color = "primary"
* @prop rounded = true
* @prop border
* @prop class: className
* @prop dismissable
* @prop transition = fade
* @prop params
* @prop ...restProps
*/
declare const Alert: import("svelte").Component<AlertProps, {}, "alertStatus">;
type Alert = ReturnType<typeof Alert>;
export default Alert;