blob: c784e85e670ee905ed8fa57f3ff27a19ab310730 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import React from 'react';
export default {
backgroundColor: '#fff',
border: '1px solid #ced4da',
padding: '0.375rem 0.75rem',
width: '100%',
borderRadius: '0.25rem',
resize: 'vertical',
fontFamily: 'inherit',
margin: '0',
display: 'block',
fontSize: '1em',
boxSizing: 'border-box',
lineHeight: '1.5rem',
} as React.CSSProperties;
|