File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ export class ClassnamesGenerator {
140
140
ringColor : this . generateClassesWithColors ( 'ringColor' ) ,
141
141
ringWidth : Object . keys ( this . _theme . ringWidth )
142
142
. map ( x => 'ring-' + x )
143
- . concat ( 'inset' ) ,
143
+ . concat ( 'ring- inset' ) ,
144
144
ringOpacity : this . getGeneratedClassesWithOpacities ( ) . ringOpacities ,
145
145
ringOffsetColor : this . generateClassesWithColors ( 'ringOffsetColor' ) ,
146
146
ringOffsetWidth : Object . keys ( this . _theme . ringOffsetWidth ) . map ( x => 'ring-offset-' + x ) ,
Original file line number Diff line number Diff line change @@ -3190,7 +3190,14 @@ export type TRingColor =
3190
3190
| 'ring-rose-800'
3191
3191
| 'ring-rose-900' ;
3192
3192
3193
- export type TRingWidth = 'ring-0' | 'ring-1' | 'ring-2' | 'ring-4' | 'ring-8' | 'ring' | 'inset' ;
3193
+ export type TRingWidth =
3194
+ | 'ring-0'
3195
+ | 'ring-1'
3196
+ | 'ring-2'
3197
+ | 'ring-4'
3198
+ | 'ring-8'
3199
+ | 'ring'
3200
+ | 'ring-inset' ;
3194
3201
3195
3202
export type TRingOpacity =
3196
3203
| 'ring-opacity-0'
You can’t perform that action at this time.
0 commit comments