1 import {TextInput as PrimerTextInput} from '@primer/react'
2 import styled from 'styled-components'
3
4 const TextInput = styled(PrimerTextInput)`
5 /* The font-size of inputs should never be less than 16px.
6 * Otherwise, iOS browsers will zoom in when the input is focused.
7 * TODO: Update font-size of TextInput in @primer/react.
8 */
9 input {
10 font-size: 16px !important;
11 color: var(--fgColor-default, #1f2328) !important;
12 caret-color: var(--fgColor-default, #1f2328) !important;
13 }
14
15 input::placeholder {
16 color: var(--fgColor-muted, #57606a) !important;
17 opacity: 1;
18 }
19 `
20 export default TextInput