@ddsys/material
Version:
<p> <a href="https://bhp-dev.gitlab.io/dds-digital-design-system/">Read the docs</a> · <a href="mailto:UserExperience@bhpbilliton.com">Request feature</a> </p>
20 lines (18 loc) • 350 B
JavaScript
export default function(theme) {
const { variables } = theme;
const { logo } = variables;
return {
small: {
width: logo.width * 0.5,
height: logo.height * 0.5
},
normal: {
width: logo.width,
height: logo.height
},
large: {
width: logo.width * 1.5,
height: logo.height * 1.5
}
};
}