feat(web/input): time input field (#206)

* feat(web/input): time input
This commit is contained in:
masonschafercodes
2023-01-31 12:41:42 -05:00
committed by GitHub
parent ada2a35c0b
commit 8a7e0f89d2
4 changed files with 33 additions and 9 deletions

View File

@@ -14,6 +14,12 @@ export const debugInput = () => {
placeholder: '420',
description: 'Description that tells you what this input field does',
},
{
type: 'time',
format: '12',
label: 'Locker Time',
description: 'Description that tells you what this input field does',
},
{ type: 'checkbox', label: 'Some checkbox' },
{ type: 'input', label: 'Locker PIN', password: true, icon: 'lock' },
{ type: 'checkbox', label: 'Some other checkbox', checked: true },