UNPKG

448 BTypeScriptView Raw
1import React, { ComponentProps } from 'react';
2import { IconKey } from './icons';
3import Svg from './svg';
4export interface IconsProps extends ComponentProps<typeof Svg> {
5 icon?: IconKey;
6 symbol?: IconKey;
7}
8export declare const Icons: React.NamedExoticComponent<IconsProps>;
9export interface SymbolsProps extends ComponentProps<typeof Svg> {
10 icons?: IconKey[];
11}
12export declare const Symbols: React.NamedExoticComponent<SymbolsProps>;