Update new input styling
This commit is contained in:
parent
7c4028f8f1
commit
25d61525b3
3 changed files with 45 additions and 8 deletions
|
@ -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';
|
||||
|
|
Reference in a new issue