UNPKG
tweak-tools
Version:
latest (0.1.1)
0.1.1
0.1.0
Tweak your React projects until awesomeness
github.com/appeltje-c/tweak-tools
appeltje-c/tweak-tools
tweak-tools
/
src
/
components
/
Number
/
StyledNumber.ts
16 lines
(14 loc)
•
327 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { styled }
from
'../../styles'
export
const
RangeGrid
=
styled
(
'div'
, {
variants
: {
hasRange
: {
true
: {
position
:
'relative'
,
display
:
'grid'
,
gridTemplateColumns
:
'auto $sizes$numberInputMinWidth'
,
columnGap
:
'$colGap'
,
alignItems
:
'center'
, }, }, }, })