UNPKG

react-ui89

Version:

A collection of React components that mimic a common style of user interfaces from the late 80s and early 90s.

19 lines (18 loc) 473 B
import React from "react"; import "./Ui89BoxShadow.css"; export interface Ui89BoxShadowProps { children?: React.ReactNode; /** * The size of the shadow gap. */ gap?: number; /** * The size of the shadow row gap. */ rowGap?: number; /** * The size of the shadow column gap. */ columnGap?: number; } export declare function Ui89BoxShadow({ children, gap, rowGap, columnGap, }: Ui89BoxShadowProps): React.JSX.Element;