@fluid-topics/ft-input-helper-text
v1.3.28
Published
A list of stylized helper text messages for form inputs
Downloads
1,621
Readme
A list of stylized helper text messages for form inputs.
Install
npm install @fluid-topics/ft-input-helper-text
yarn add @fluid-topics/ft-input-helper-textUsage
import { html } from "lit"
import "@fluid-topics/ft-input-helper-text"
function render() {
return html` <ftds-input-helper-text
.helperText="I am a helper text."
.errorMessages=${ [ 'This is an error' ] }
.warningMessages=${ [ 'This is a warning' ] }
></ftds-input-helper-text> `
}