@spaceone/design-system
Version:
SpaceONE Design System
15 lines (12 loc) • 343 B
text/typescript
import { themes } from '@/others/deprecated/selectable-item/config';
export type ThemeType = typeof themes[number];
export interface SelectableItemPropsType {
iconUrl?: string;
title?: string;
active?: boolean;
disabled?: boolean;
defaultIcon?: string;
color?: string;
theme?: ThemeType;
iconSize?: string;
}