UNPKG

@pomegranate-ui/maracuya-ui

Version:

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

20 lines (19 loc) 571 B
/** * File Name: Chip */ /** @jsx jsx */ import React from 'react'; import { ICoreBase } from '../../core'; export interface Ichip extends ICoreBase { text?: string; hiddenText?: string; color?: Color; rounded?: boolean; other?: any; icon?: React.ReactNode; inverted?: boolean; size?: string; } declare type Color = "primary" | "secondary" | "success" | "warning" | "danger" | "info" | "light" | "dark"; export declare const Chip: React.ForwardRefExoticComponent<Ichip & React.RefAttributes<HTMLDivElement>>; export {};