@spaced-out/ui-design-system
Version:
Sense UI components library
16 lines • 623 B
TypeScript
import * as React from 'react';
import type { AlertSemanticType } from '../../types/common';
import type { IconProps } from '../../components/Icon/Icon';
type ClassNames = Readonly<{
wrapper?: string;
icon?: string;
}>;
export interface SemanticIconProps extends Omit<IconProps, 'classNames' | 'semantic' | 'disabled'> {
classNames?: ClassNames;
semantic?: AlertSemanticType;
disabled?: boolean;
testId?: string;
}
export declare const SemanticIcon: ({ semantic, classNames, size, testId, ...iconProps }: SemanticIconProps) => React.JSX.Element;
export {};
//# sourceMappingURL=SemanticIcon.d.ts.map