UNPKG

@baseplate-dev/ui-components

Version:

Shared UI component library

11 lines 395 B
import type React from 'react'; import { Toaster as Sonner } from 'sonner'; type ToasterProps = React.ComponentProps<typeof Sonner>; /** * A toaster component that displays toast notifications. * * Adapted from https://ui.shadcn.com/docs/components/sonner */ declare const Toaster: ({ ...props }: ToasterProps) => React.ReactElement; export { Toaster }; //# sourceMappingURL=toaster.d.ts.map