import React, {FC, PropsWithChildren} from "react"; import {ColorOptionWithCustomTint, request} from "./Color"; export type CardItemMainValueProps = ColorOptionWithCustomTint & { } export const CardItemMainValue: FC = ({color, children}) => { return
{children}
; }