2
0
Files
bot/apps/builder/components/shared/Textbox/Input.tsx
2022-03-10 11:34:55 +01:00

8 lines
247 B
TypeScript

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} />
)