13 lines
286 B
TypeScript
13 lines
286 B
TypeScript
import { MantineProviderProps } from '@mantine/core';
|
|
|
|
export const styles: MantineProviderProps['styles'] = {
|
|
Checkbox: {
|
|
input: { cursor: 'pointer' },
|
|
label: { cursor: 'pointer' },
|
|
},
|
|
Switch: {
|
|
input: { cursor: 'pointer' },
|
|
label: { cursor: 'pointer' },
|
|
},
|
|
};
|