UNPKG

@pomegranate-ui/maracuya-ui

Version:

Maracuya is a design system built with React, Typescript & emotion

12 lines (11 loc) 360 B
/** * File Name: Card */ /** @jsx jsx */ import React from 'react'; import { ICoreBase } from '../../core'; export interface Icard extends ICoreBase { onClick?: (event: React.MouseEvent<HTMLElement>) => void; isSectioned?: boolean; } export declare const Card: React.ForwardRefExoticComponent<Icard & React.RefAttributes<HTMLDivElement>>;