UNPKG

@pomegranate-ui/maracuya-ui

Version:

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

12 lines (11 loc) 312 B
/** * File Name: Alert */ /** @jsx jsx */ import React from 'react'; import { ICoreBase } from '../../core'; export interface Ialert extends ICoreBase { text?: string; color?: string; } export declare const Alert: React.ForwardRefExoticComponent<Ialert & React.RefAttributes<HTMLDivElement>>;