synapse-react-client
Version:
[](https://badge.fury.io/js/synapse-react-client) [](https://github.com/prettier/prettie
12 lines • 425 B
TypeScript
import { ComponentType } from 'react';
export type IconOptions = Record<string, string | ComponentType<any>>;
export type IconProps = {
type: string;
iconOptions?: IconOptions;
value?: string;
isHeader?: boolean;
cssClass?: string;
};
declare function Icon({ type, value, iconOptions, cssClass }: IconProps): import("react/jsx-runtime").JSX.Element;
export default Icon;
//# sourceMappingURL=Icon.d.ts.map