Skip to content

Commit d246326

Browse files
committed
fix: colors of bar
1 parent eb76548 commit d246326

File tree

1 file changed

+2
-4
lines changed
  • example/storybook-nativewind/src/extra-components/nativewind

1 file changed

+2
-4
lines changed

example/storybook-nativewind/src/extra-components/nativewind/Progress.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@ import React from 'react';
33

44
export function Graph({ data }: { data: any }) {
55
const colorMap: any = {
6-
'gluestack-ui': '$primary500',
6+
'gluestack-ui v1': '$primary500',
77
'React Native': '#61dafb',
8-
'Tamagui': '#d6409f',
9-
'Styled Components': '$yellow500',
10-
'NativeBase': '$cyan600',
8+
'gluestack-ui v2': '$cyan600',
119
};
1210

1311
const maxValue = Math.max(...Object.values(data).map((stat: any) => stat));

0 commit comments

Comments
 (0)