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
45 lines (39 loc) • 844 B
JavaScript
import styled from "styled-components";
export const ItemsContainer = styled.div`
display:inline-block;
margin-right: 30px;
`;
export const PageContainer = styled.div`
display:inline-block;
`;
export const SelectContainer = styled.div`
display:inline-block;
width : 150px;
.page-size-selector{
width:50px;
display:inline-block;
margin-right: 10px;
}
`;
export const PaginatorContainer = styled.div`
font-family: arial;
color: #a8a6a6;
font-size: 12px;
.seperator{
font-style: normal;
display:inline-block;
margin: 10px;
}
.left-pagination,.right-pagination{
cursor: pointer;
height: 10px;
width: 10px;
padding: 10px 10px 0px 10px;
font-size: 18px;
font-weight: bold;
position: relative;
top: 2px;
left: 5px;
}
`;
//# sourceMappingURL=style.js.map