Skip to content

Commit

Permalink
King
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris committed Feb 25, 2020
1 parent aa4821d commit 752ea0d
Show file tree
Hide file tree
Showing 5 changed files with 69 additions and 3 deletions.
23 changes: 23 additions & 0 deletions components/Faces.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import React from 'react';
import { makeStyles } from '@material-ui/core/styles';
import {
King,
} from '../graphics'

const useStyles = makeStyles(theme => ({
maxIconSize: {
maxHeight: 100,
maxWidth: 100,
margin: 4
}
}));

export default function Faces() {
const classes = useStyles();
const color = '#212121'
return (
<React.Fragment>
<King />
</React.Fragment>
);
}
2 changes: 2 additions & 0 deletions components/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ import Dropdown from "./Dropdown";
import Icons from "./Icons";
import Ranks from "./Ranks";
import Suits from "./Suits";
import Faces from "./Faces";

export {
ButtonExamples,
Dropdown,
Icons,
Ranks,
Suits,
Faces,
};
Loading

0 comments on commit 752ea0d

Please sign in to comment.