feat: tampilan upload stiker di admin

This commit is contained in:
2025-05-14 16:14:24 +08:00
parent 83f9c592b4
commit fbea35eef9
10 changed files with 300 additions and 39 deletions

View File

@@ -0,0 +1,15 @@
import { Styles } from "@mantine/core";
import { BaseSelectStylesNames } from "@mantine/core/lib/Select/types";
import { MainColor } from "../color";
export const baseStylesTextInput: Styles<
BaseSelectStylesNames,
Record<string, any>
> = {
label: {
color: MainColor.white,
},
input: {
backgroundColor: MainColor.white,
},
};