chop-logic-components
Version:
React UI components library for Chop Logic project
12 lines (11 loc) • 435 B
TypeScript
import { ChopLogicIconName } from '../enums';
import { ChopLogicComponentProps } from './_common';
import { default as React, HTMLAttributes } from 'react';
export interface ChopLogicIconProps extends ChopLogicComponentProps, HTMLAttributes<SVGSVGElement> {
name?: ChopLogicIconName;
testId?: string;
title?: string;
}
export interface ChopLogicSVGElementProps extends React.SVGProps<SVGSVGElement> {
title?: string;
}