UNPKG

@pomegranate-ui/maracuya-ui

Version:

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

15 lines (14 loc) 433 B
/** * File Name: Image */ /** @jsx jsx */ import React from 'react'; import { ICoreBase } from '../../core'; export interface Iimage extends ICoreBase { src?: string; alt?: string; other?: any; ariaLabel?: string; } export declare const imageDefault: import("@emotion/utils").SerializedStyles; export declare const Image: React.ForwardRefExoticComponent<Iimage & React.RefAttributes<HTMLImageElement>>;