Skip to content

Commit

Permalink
feat: Export inputTemplated function
Browse files Browse the repository at this point in the history
  • Loading branch information
coreyfarrell committed Oct 28, 2020
1 parent 28b9379 commit 9a2c6ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion form.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const [
formDirtySelector
] = Symbols;

function inputTemplated(label, icon, template, moreClass) {
export function inputTemplated(label, icon, template, moreClass) {
const iconTemplate = icon ? html`<cfware-icon icon=${icon} />` : '';
const className = [].concat('field', moreClass || []).join(' ');

Expand Down

0 comments on commit 9a2c6ec

Please sign in to comment.