-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
628fd36
commit c8cd861
Showing
30 changed files
with
130 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import React from 'react'; | ||
import { makeStyles } from '@material-ui/core/styles'; | ||
import TextField from '@material-ui/core/TextField'; | ||
|
||
const useStyles = makeStyles(theme => ({ | ||
root: { | ||
'& > *': { | ||
margin: theme.spacing(1), | ||
width: 200, | ||
}, | ||
}, | ||
})); | ||
|
||
export default function ColorsTextField() { | ||
const classes = useStyles(); | ||
|
||
return ( | ||
<div className={classes.root}> | ||
<TextField id="color-primary-standard" label="Color primary" /> | ||
<TextField id="color-secondary-standard" label="Color secondary" color="secondary" /> | ||
<br /> | ||
<TextField id="color-primary-outlined" label="Color primary" variant="outlined" /> | ||
<TextField | ||
id="color-secondary-outlined" | ||
label="Color secondary" | ||
variant="outlined" | ||
color="secondary" | ||
/> | ||
<br /> | ||
<TextField id="color-primary-filled" label="Color primary" variant="filled" /> | ||
<TextField | ||
id="color-secondary-filled" | ||
label="Color secondary" | ||
variant="filled" | ||
color="secondary" | ||
/> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import React from 'react'; | ||
import { makeStyles } from '@material-ui/core/styles'; | ||
import TextField from '@material-ui/core/TextField'; | ||
|
||
const useStyles = makeStyles(theme => ({ | ||
root: { | ||
'& > *': { | ||
margin: theme.spacing(1), | ||
width: 200, | ||
}, | ||
}, | ||
})); | ||
|
||
export default function ColorsTextField() { | ||
const classes = useStyles(); | ||
|
||
return ( | ||
<div className={classes.root}> | ||
<TextField id="color-primary-standard" label="Color primary" /> | ||
<TextField id="color-secondary-standard" label="Color secondary" color="secondary" /> | ||
<br /> | ||
<TextField id="color-primary-outlined" label="Color primary" variant="outlined" /> | ||
<TextField | ||
id="color-secondary-outlined" | ||
label="Color secondary" | ||
variant="outlined" | ||
color="secondary" | ||
/> | ||
<br /> | ||
<TextField id="color-primary-filled" label="Color primary" variant="filled" /> | ||
<TextField | ||
id="color-secondary-filled" | ||
label="Color secondary" | ||
variant="filled" | ||
color="secondary" | ||
/> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.