2
0
Files
bot/apps/builder/components/shared/Textbox/Input.tsx

8 lines
247 B
TypeScript
Raw Normal View History

import { Input as ChakraInput } from '@chakra-ui/react'
import React from 'react'
import { TextBox, TextBoxProps } from './TextBox'
export const Input = (props: Omit<TextBoxProps, 'TextBox'>) => (
<TextBox TextBox={ChakraInput} {...props} />
)