9 lines
193 B
TypeScript
9 lines
193 B
TypeScript
import { createStyle } from '@gluestack-style/react';
|
|
|
|
export const ProgressFilledTrack = createStyle({
|
|
bg: '$primary500',
|
|
borderRadius: '$full',
|
|
_dark: {
|
|
bg: '$primary400',
|
|
},
|
|
});
|