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
26 lines (24 loc) • 992 B
JavaScript
import styled from 'styled-components';
import { colors } from '../colorCodes';
export const Icon = styled.i`
display: inline-block;
position: ${props => props.position};
background-image: url(${props => props.url});
background-repeat: ${props => props.repeat || 'no-repeat'};
background-size: ${props => props.size || '10px'};
background-position: ${props => props.position || '10px 10px'};
width: ${props => props.width || '30px'};
height: ${props => props.height || '25px'};
font-size: ${props => props.fontSize || '30px'};
color: ${props => props.color || colors.inputBorder};
top: ${props => props.top || '30px'};
right: ${props => props.right || '30px'};
left: ${props => props.left};
font-weight: ${props => props.fontWeight || 'normal'};
cursor: ${props => props.cursor || 'default'};
&:before {
content: ${props => `${props.content} !important`};
}
`;
export default Icon;
//# sourceMappingURL=icon.js.map