(frontend) introduce a TextArea primitive

Needed for the Chat text message input.
Basic styled RAC text area.
This commit is contained in:
lebaudantoine
2024-10-09 17:30:51 +02:00
committed by aleb_the_flash
parent 0370d9cad0
commit fe8fd36467

View 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',
},
})