@uva-glass/component-library
Version:
React components UvA
5 lines (4 loc) • 398 B
TypeScript
import { HTMLAttributes } from 'react';
export type BackdropProps = Omit<HTMLAttributes<HTMLDivElement>, 'className' | 'style'>;
/** Represents a component to dim the screen, used in combination with a modal dialog. Accepts normal HTML attributes, except className and style. */
export declare const Backdrop: ({ children, ...restProps }: BackdropProps) => import("react/jsx-runtime").JSX.Element;