UNPKG

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

17 lines (14 loc) 386 B
import styled from "styled-components"; export const FormWrapper = styled.form` font-size: 10px; `; export const ElementWrapper = styled.div` margin: ${props => props.margin || "10px"}; overflow: ${props => props.overflow || "visible"}; position: ${props => props.position}; `; export default { FormWrapper, ElementWrapper }; //# sourceMappingURL=style.js.map