UNPKG

@spaced-out/ui-design-system

Version:
14 lines 496 B
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