✨(frontend) introduce a TextArea primitive
Needed for the Chat text message input. Basic styled RAC text area.
This commit is contained in:
committed by
aleb_the_flash
parent
0370d9cad0
commit
fe8fd36467
18
src/frontend/src/primitives/TextArea.tsx
Normal file
18
src/frontend/src/primitives/TextArea.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import { TextArea as RACTextArea } from 'react-aria-components'
|
||||
import { styled } from '@/styled-system/jsx'
|
||||
|
||||
/**
|
||||
* Styled RAC TextArea.
|
||||
*/
|
||||
export const TextArea = styled(RACTextArea, {
|
||||
base: {
|
||||
width: 'full',
|
||||
paddingY: 0.25,
|
||||
paddingX: 0.5,
|
||||
border: '1px solid',
|
||||
borderColor: 'control.border',
|
||||
color: 'control.text',
|
||||
borderRadius: 4,
|
||||
transition: 'all 200ms',
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user