Skip to content

Matter-Inc/matter-ui

Repository files navigation

Matter-UI

matter-ui.png

How to test

You can live test our components using Storybook.

https://confident-kalam-43f67a.netlify.app

Available components

  • TextInput
  • PasswordInput
  • DateInput

How to use

For example, you can use the following code to render a TextInput component.`:

import React from 'react';
import { TextInput } from 'matter-react-ui';

const App = () => {
  return (
    <TextInput
      placeholder='Enter your name'
      size='md'
    />
  );

export default App;
}