@moderntribe/wme-ui
Version:
Components and hooks to build the best UX/UI admin wizards
25 lines • 671 B
TypeScript
import type React from 'react';
import type { ReactElement } from 'react';
import { BoxProps } from '@mui/material';
interface DeviceSelectionProps extends BoxProps {
devices: Array<{
name: string;
icon: ReactElement;
onClick?: (event: React.MouseEvent<HTMLElement>) => void;
active?: boolean;
}>;
}
export declare const DEVICE_SX: {
active: {
color: string;
mx: string;
};
default: {
color: string;
cursor: string;
mx: string;
};
};
declare const DeviceSelection: React.FC<DeviceSelectionProps>;
export default DeviceSelection;
//# sourceMappingURL=device-selection.d.ts.map