@spaced-out/ui-design-system
Version:
Sense UI components library
18 lines • 535 B
TypeScript
import * as React from 'react';
import type { IconSize, IconType } from '../Icon';
type ClassNames = Readonly<{
wrapper?: string;
icon?: string;
badgeIcon?: string;
}>;
export type BadgedIconProps = {
type?: IconType;
name: string;
size?: IconSize;
ariaLabel?: string;
showBadge?: boolean;
classNames?: ClassNames;
};
export declare const BadgedIcon: ({ name, showBadge, classNames, size, type, ariaLabel, }: BadgedIconProps) => React.JSX.Element;
export {};
//# sourceMappingURL=BadgedIcon.d.ts.map