0.0.2 • Published 2 years ago

pr-floating-label v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

PR-FLOATING-LABEL

Pablo Rostirolla

Example

import { FloatingInput } from 'pr-floating-input';
function App() {
  return (
    <>
      <FloatingInput label="Nombre" />
    </>
  );
}

export default App;

Example of optional parameters

function App() {
  return (
    <>
      <FloatingInput label="Nombre" error={true} />
    </>
  );
}

export default App;