bushido-strap
Version:
a library of styled components with material theme
11 lines (9 loc) • 437 B
JavaScript
import { css } from "styled-components";
import { textAlign, fontSize, fontWeight } from "../../maps";
export default css`
font-family: ${(props) => (props.font ? props.font : "inherit")};
font-size: ${(props) => (props.fSize ? props.fSize : fontSize)};
font-weight: ${(props) => (props.weight ? props.weight : fontWeight)};
text-decoration: ${(props) => (props.textDec ? props.textDec : "none")}
text-align: ${textAlign};
`;