UNPKG

projex-ui-dev

Version:

Projex' user interface

9 lines (8 loc) 238 B
import React, { ReactNode } from 'react'; type Props = { width?: string; height?: string; children: ReactNode; }; declare const ShadowCard: ({ width, height, children }: Props) => React.JSX.Element; export default ShadowCard;