sriracha-ui
Version:
A react style library build with styled-components, and material ui theme.
21 lines (18 loc) • 297 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;