bushido-strap
Version:
a library of styled components with material theme
21 lines (18 loc) • 298 B
JavaScript
import styled from "styled-components";
import {
sizeBase,
styleBase,
shapeBase,
fontBase,
flexRowBase,
toolTipBase,
} from "../base";
const ToolTip = styled.div`
${flexRowBase}
${sizeBase}
${styleBase}
${shapeBase}
${fontBase}
${toolTipBase}
`;
export default ToolTip;