@pomegranate-ui/maracuya-ui
Version:
Maracuya is a design system built with React, Typescript & emotion
25 lines (24 loc) • 618 B
TypeScript
/**
* File Name: Embed
*/
/** @jsx jsx */
import React from 'react';
import { ICoreBase } from '../../core';
export declare enum Shapes {
landscape = "landscape",
square = "square"
}
export interface Iembed extends ICoreBase {
src?: string;
frameBorder?: number;
allowFullScreen?: boolean;
variant?: string;
ariaLabel?: string;
title?: string;
ariaHidden?: boolean;
}
export declare type variants = {
variant: string | undefined;
css: any;
};
export declare const Embed: React.ForwardRefExoticComponent<Iembed & React.RefAttributes<HTMLDivElement>>;