18 lines
316 B
TypeScript
18 lines
316 B
TypeScript
import { createStyle } from '@gluestack-style/react';
|
|
|
|
export const CheckboxIcon = createStyle({
|
|
':checked': {
|
|
color: '$backgroundLight0',
|
|
},
|
|
':disabled': {
|
|
opacity: 0.4,
|
|
},
|
|
'_dark': {
|
|
':checked': {
|
|
color: '$backgroundDark0',
|
|
},
|
|
':disabled': {
|
|
opacity: 0.4,
|
|
},
|
|
},
|
|
});
|