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