UNPKG

@amaui/ui-react

Version:
18 lines (17 loc) 537 B
import React from 'react'; import { TTone } from '@amaui/style-react'; import { IBaseElement, ITonal, IColor } from '../types'; export declare const rtl_icons: string[]; export interface IIcon extends IBaseElement { tonal?: ITonal; color?: IColor; size?: 'very small' | 'small' | 'regular' | 'medium' | 'large' | 'very large' | number; tone?: TTone; viewBox?: string; name?: string; short_name?: string; noRtl?: boolean; disabled?: boolean; } declare const Icon: React.FC<IIcon>; export default Icon;