@spaced-out/ui-design-system
Version:
Sense UI components library
24 lines • 798 B
TypeScript
import * as React from 'react';
import type { Flow } from 'flow-to-typescript-codemod';
import type { AlertSemanticType } from '../../types/common';
import type { IconSize, IconType } from '../../components/Icon';
type ClassNames = Readonly<{
wrapper?: string;
}>;
export interface RadioTileProps {
id: string;
classNames?: ClassNames;
semantic?: AlertSemanticType;
header?: string;
description?: string;
chipItems?: Array<string>;
onTileClick?: (e: React.SyntheticEvent<HTMLElement>, id: string) => void;
iconName?: string;
iconSize?: IconSize;
iconType?: IconType;
isSelected?: boolean;
testId?: string;
}
export declare const RadioTile: Flow.AbstractComponent<RadioTileProps, HTMLDivElement>;
export {};
//# sourceMappingURL=RadioTile.d.ts.map