7
0
mirror of https://github.com/pelican-dev/panel.git synced 2025-06-28 03:31:07 +02:00
2022-07-02 17:24:24 -04:00

14 lines
311 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';