import { styles } from "@/styles/components/colorPicker";
import { View, Text } from "react-native";
import type React from "react";
import Skeleton from "./Skeleton";
interface CustomColorPickerProps {
description?: string;
title?: string;
}
export default function SkeletonColorPicker({
description,
title,
}: CustomColorPickerProps) {
return (
<>
{title && (
<>
{title}
{description && (
{description}
)}
>
)}
>
);
}