chop-logic-components
Version:
React UI components library for Chop Logic project
9 lines (8 loc) • 340 B
TypeScript
import { ChopLogicSVGElementProps } from '../../models';
import { ReactElement } from 'react';
import { ChopLogicIconName } from '../../enums';
type ChopLogicIcons = {
[key in ChopLogicIconName]: ({ title, ...rest }: ChopLogicSVGElementProps) => ReactElement;
};
export declare const ChopLogicIconDictionary: ChopLogicIcons;
export {};