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
31 lines (27 loc) • 1.07 kB
JavaScript
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
import React from "react";
import FormElement from "../FormElement.js";
import styled from "styled-components";
import { colors } from "../../colorCodes";
let StyledInput = styled.input`
display: ${props => props.display || "block"};
padding: 7px;
border-radius: 4px;
border: 1px solid ${colors.inputBorder};
width: ${props => props.width || "100%"};
max-width: ${props => props.maxWidth || "none"};
margin: ${props => props.margin} !important;
&:disabled{
background-color: #eeeeee75;
}
`;
class Input extends FormElement {
constructor(props) {
super(props);
}
render() {
return React.createElement(StyledInput, _extends({ value: this.state.value, onChange: this.handleChange }, this.props));
}
}
export default Input;
//# sourceMappingURL=Input.js.map