@krowdy-ui/views
Version:
React components that implement Google's Material Design.
49 lines (46 loc) • 1.1 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.useStyles = void 0;
var _styles = require("@krowdy-ui/styles");
var useStyles = (0, _styles.makeStyles)(function (_ref) {
var spacing = _ref.spacing,
palette = _ref.palette,
shape = _ref.shape;
return {
block: {
display: 'block'
},
chip: {
backgroundColor: palette.primary[50],
border: "solid 1px ".concat(palette.primary[400])
},
companyContent: {
alignItems: 'center',
display: 'flex'
},
companyImageContent: {
border: "1px solid ".concat(palette.grey[400]),
borderRadius: shape.borderRadius,
height: 32,
marginRight: spacing(1.5),
padding: spacing(.5),
width: 32
},
marginBottom: {
marginBottom: spacing(1)
},
root: {
'& > *': {
marginBottom: spacing(.5)
},
borderTop: "1px solid ".concat(palette.grey[400]),
marginTop: spacing(1.5),
paddingTop: spacing(1.5)
}
};
}, {
name: 'ProfileCandidateCommon'
});
exports.useStyles = useStyles;