Update new input styling

This commit is contained in:
DaneEveritt 2022-07-02 17:24:24 -04:00
parent 7c4028f8f1
commit 25d61525b3
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
3 changed files with 45 additions and 8 deletions

View file

@ -1,3 +1,13 @@
export { default as Checkbox } from './Checkbox';
export { default as InputField } from './InputField';
import Checkbox from '@/components/elements/inputs/Checkbox';
import InputField from '@/components/elements/inputs/InputField';
const Input = Object.assign(
{},
{
Text: InputField,
Checkbox: Checkbox,
}
);
export { Input };
export { default as styles } from './styles.module.css';