12 lines
202 B
TypeScript
12 lines
202 B
TypeScript
import { createStyle } from '@gluestack-style/react';
|
|
|
|
export const Spinner = createStyle({
|
|
props: {
|
|
color: '$primary500',
|
|
},
|
|
_dark: {
|
|
props: {
|
|
color: '$primary400',
|
|
},
|
|
},
|
|
});
|