UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

14 lines 453 B
import { IconSvgProps } from './IconSvg/IconSvg'; type IconConfigs = { [index: string]: IconSvgProps; }; export type IconListProps = { iconConfigs: IconConfigs; iconNames: string[]; commonIconProps?: Omit<IconSvgProps, 'icon'>; useTheme?: boolean; useBackground?: boolean; }; declare function IconList(props: IconListProps): import("react/jsx-runtime").JSX.Element; export default IconList; //# sourceMappingURL=IconList.d.ts.map