UNPKG

welcome-ui

Version:

Customizable design system with react • styled-components • styled-system and ariakit.

11 lines (10 loc) 262 B
import { default as React } from 'react'; import { ShapeProps } from '../Shape'; export interface CoverOptions { src: string; } export type CoverProps = CoverOptions & ShapeProps; /** * @name Card.Cover */ export declare const Cover: React.FC<CoverProps>;