apprev/components-jsx/TextInput.tsx
2025-05-15 07:10:53 -04:00

12 lines
301 B
TypeScript

import { ComponentTypes, TextInput } from "oceanic.js";
export { TextInputStyles } from "oceanic.js";
export type TextInputProps = Omit<TextInput, "type">;
export function TextInput(props: TextInputProps): TextInput {
return {
type: ComponentTypes.TEXT_INPUT,
...props
};
}