UNPKG

hair-ui

Version:

A Minimalist Component Library For React.

8 lines (7 loc) 244 B
import React from "react"; export interface CardProps { header?: React.ReactNode; footer?: React.ReactNode; children?: React.ReactNode; } export declare function Card({ header, footer, children, ...props }: CardProps): JSX.Element;