[ADD] LibCC ChromaCase:

- IconButton and MusicItem creation and documentation
- Update native base theme
This commit is contained in:
mathysPaul
2023-11-02 21:14:38 +01:00
parent e499bb2f9f
commit d2e1ba51c6
18 changed files with 781 additions and 28 deletions

View File

@@ -56,13 +56,13 @@ const CheckboxBase: React.FC<CheckboxProps> = ({ title, color, style, check, set
{check ? (
<TickSquare
size="24"
color={color ?? colors.primary[400]}
color={color ?? colors.primary[300]}
variant="Bold"
/>
) : (
<AddSquare
size="24"
color={color ?? colors.primary[400]}
color={color ?? colors.primary[300]}
variant="Outline"
/>
)}