fk-react-ui-components
Version:
Step 1 : Create a file in [ Seeds / Plants / Trees ] <br> Step 2 : It should export an Object with component name and story Component [Refer other components] <br> Step 3 : Story Component should return a react component <br> Step 3 : Created file should
39 lines (32 loc) • 802 B
JavaScript
import styled from 'styled-components';
import { guidelineColors } from 'components/colorCodes';
export const BreadcrumbContainer = styled.div`
font-size: 12px;
display: inline-block;
ul {
margin: 0px;
padding: 0px;
}
ul li {
display: inline-block;
span.section-link {
cursor: pointer;
vertical-align: middle;
color: ${guidelineColors.text.blueLink};
}
&:last-child {
display: block;
padding-top: 3px;
}
.fa {
vertical-align: middle;
padding: 0 5px;
font-size: 10px;
color: ${guidelineColors.border.grey3};
}
}
`;
export default {
BreadcrumbContainer
};
//# sourceMappingURL=index.js.map