igm-input
v1.6.0
Published
A component from the [int-gel-matter](https://github.com/bbc/int-gel-matter) library.
Downloads
5
Readme
igm-input
A component from the int-gel-matter library.
Installation
yarn add @bbc/igm-input
or, install directly from git hub if you don't have a BBC NPM account
yarn add git+ssh://[email protected]:bbc/igm-input.git#{tag}
Replace {tag}
with a version tag.
Example usage
import React from 'react';
import Input from 'igm-input';
import 'igm-input/input.css';
const App = () => {
return <Input />;
};