xtreme-ui
Version:
Collection of reusable components that can be used in web projects
10 lines • 355 B
TypeScript
import { EIconType } from '../../base/Icon/types';
import { EButtonSize, EButtonTypes } from '../../base/Button/types';
export type TThemeSwitchProps = {
className?: string;
withLabel?: boolean;
type?: keyof typeof EButtonTypes;
size?: keyof typeof EButtonSize;
iconType?: keyof typeof EIconType;
};
//# sourceMappingURL=types.d.ts.map