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
23 lines (22 loc) • 544 B
JavaScript
/**
* Created by manoraj.k on 17/08/17.
*/
import React from "react";
import styled from "styled-components";
import { colors } from "../../colorCodes";
export const SimpleSearchIcon = styled.span`
position:absolute;
right: 10px;
top: 50%;
-webkit-transform: translateY(-54%);
-ms-transform: translateY(-54%);
transform: translateY(-54%);
cursor : pointer;
&.active-icon-color {
color : ${colors.brandBlue}
}
&.inprogress-icon-color {
color : ${colors.inprogressIcon}
}
`;
//# sourceMappingURL=SimpleSearch.js.map