UNPKG

@spaced-out/ui-design-system

Version:
18 lines 535 B
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