UNPKG

@uva-glass/component-library

Version:

React components UvA

8 lines (7 loc) 457 B
import { PropsWithChildren } from 'react'; export interface SectionNotificationProps { /** `true` if the notification bar should be full width; otherwise, `false`. */ fullWidth?: boolean; } /** Represents a component to show notifications within a [Card](/story/atoms-card--card-example). */ export declare const SectionNotification: ({ fullWidth, children }: PropsWithChildren<SectionNotificationProps>) => import("react/jsx-runtime").JSX.Element;