Sherlock / config / theme / Spinner.ts
Spinner.ts
Raw
import { createStyle } from '@gluestack-style/react';

export const Spinner = createStyle({
  props: {
    color: '$primary500',
  },
  _dark: {
    props: {
      color: '$primary400',
    },
  },
});