feat(editor): 🚸 Improve and unify inputs
This commit is contained in:
7
apps/builder/components/shared/Textbox/Input.tsx
Normal file
7
apps/builder/components/shared/Textbox/Input.tsx
Normal file
@ -0,0 +1,7 @@
|
||||
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} />
|
||||
)
|
Reference in New Issue
Block a user