@clipmx/input

Clip UI input form control

Usage no npm install needed!

<script type="module">
  import clipmxInput from 'https://cdn.skypack.dev/@clipmx/input';
</script>

README

Clip Input

Installation

npm install @clipmx/input --save

Usage

import React from 'react';
import Input from '@clipmx/input';

const MyComponent = () => (
  <div>
    Hello World
    <Input label="I'm an input" placeholder="Value here..." />
  </div>
);

export default MyComponent;

Props

This is a wrapper of the Material-UI Text Field, so you can use any props that Material-UI supports.