Skip to content

Commit

Permalink
[docs] Add classNames TS demo (#17771)
Browse files Browse the repository at this point in the history
  • Loading branch information
lksilva authored and eps1lon committed Oct 8, 2019
1 parent 59231d4 commit 7971561
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/pages/customization/components/ClassNames.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import { withStyles } from '@material-ui/core/styles';
import Button from '@material-ui/core/Button';
import { withStyles } from '@material-ui/core/styles';

// We can inject some CSS into the DOM.
const styles = {
Expand Down
34 changes: 34 additions & 0 deletions docs/src/pages/customization/components/ClassNames.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import React from 'react';
import clsx from 'clsx';
import Button from '@material-ui/core/Button';
import { withStyles, WithStyles } from '@material-ui/core/styles';

interface Props extends WithStyles<typeof styles> {
children?: React.ReactNode;
className?: string;
}

// We can inject some CSS into the DOM.
const styles = {
root: {
background: 'linear-gradient(45deg, #FE6B8B 30%, #FF8E53 90%)',
borderRadius: 3,
border: 0,
color: 'white',
height: 48,
padding: '0 30px',
boxShadow: '0 3px 5px 2px rgba(255, 105, 135, .3)',
},
};

function ClassNames(props: Props) {
const { classes, children, className, ...other } = props;

return (
<Button className={clsx(classes.root, className)} {...other}>
{children || 'class names'}
</Button>
);
}

export default withStyles(styles)(ClassNames);

0 comments on commit 7971561

Please sign in to comment.