-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathprops.tsx
35 lines (34 loc) · 868 Bytes
/
props.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import { ComponentsProps } from "@material-ui/core/styles/props";
import React from "react";
import CheckBoxOutlineBlankIcon from "@material-ui/icons/CheckBoxOutlineBlank";
import CheckBoxIcon from "@material-ui/icons/CheckBox";
export const props: ComponentsProps = {
MuiCheckbox: {
icon: <CheckBoxOutlineBlankIcon fontSize="small" />,
checkedIcon: <CheckBoxIcon fontSize="small" />,
},
MuiInput: {
disableUnderline: true,
},
MuiButtonBase: {
// The properties to apply
disableRipple: true, // No more ripple, on the whole application 💣!
},
MuiIconButton: {
size: "small",
},
MuiInputLabel: {
shrink: true,
},
MuiTextField: {
autoComplete: "off",
fullWidth: true,
},
MuiTooltip: {
placement: "top-start",
},
MuiLink: {
color: "inherit",
underline: "always",
},
} as ComponentsProps;