7
0
mirror of https://github.com/pelican-dev/panel.git synced 2025-07-12 00:31:07 +02:00
2022-11-25 13:25:03 -07:00

14 lines
312 B
TypeScript

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';