Add All Skeleton Except Collaboration
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { AccentColor } from "@/app_modules/_global/color";
|
||||
import { AccentColor, MainColor } from "@/app_modules/_global/color";
|
||||
import { Card } from "@mantine/core";
|
||||
import React from "react";
|
||||
|
||||
@@ -30,7 +30,7 @@ export function ComponentGlobal_CardStyles({
|
||||
paddingInline: "16px",
|
||||
paddingBlock: "16px",
|
||||
borderRadius: "10px",
|
||||
color: color ? color : "white",
|
||||
color: color ? color : MainColor.white,
|
||||
height: height ? height : "auto",
|
||||
marginBottom: marginBottom ? marginBottom : "15px",
|
||||
}}
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import { Group, Text } from "@mantine/core";
|
||||
import { MainColor } from "../color";
|
||||
|
||||
export default function ComponentGlobal_TampilanAngkaRatusan({
|
||||
nominal,
|
||||
@@ -32,7 +33,7 @@ export default function ComponentGlobal_TampilanAngkaRatusan({
|
||||
fw={fontWeight ? fontWeight : "bold"}
|
||||
fz={fontSize ? fontSize : "md"}
|
||||
style={{
|
||||
color: color ? color : "white",
|
||||
color: color ? color : MainColor.white,
|
||||
}}
|
||||
>
|
||||
{new Intl.NumberFormat("id-ID", { maximumFractionDigits: 10 }).format(
|
||||
@@ -43,6 +44,9 @@ export default function ComponentGlobal_TampilanAngkaRatusan({
|
||||
<Text
|
||||
fw={fontWeight ? fontWeight : "bold"}
|
||||
fz={fontSize ? fontSize : "md"}
|
||||
style={{
|
||||
color: color ? color : MainColor.white,
|
||||
}}
|
||||
>
|
||||
{textAfter}
|
||||
</Text>
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import { Text } from "@mantine/core";
|
||||
import { MainColor } from "../color";
|
||||
|
||||
export default function ComponentGlobal_TampilanRupiah({
|
||||
nominal,
|
||||
@@ -17,7 +18,7 @@ export default function ComponentGlobal_TampilanRupiah({
|
||||
fw={fontWeight ? fontWeight : "bold"}
|
||||
fz={fontSize ? fontSize : "md"}
|
||||
style={{
|
||||
color: color ? color : "white",
|
||||
color: color ? color : MainColor.white,
|
||||
}}
|
||||
>
|
||||
Rp.{" "}
|
||||
|
||||
Reference in New Issue
Block a user