'use client'; import PropTypes from 'prop-types'; import { useId } from 'react'; // @mui import { useTheme } from '@mui/material/styles'; /*************************** ICON - CURVE ***************************/ export default function Curve({ size = 24, color }) { const theme = useTheme(); const uniqueId = useId(); // Generate a unique ID return ( ); } Curve.propTypes = { size: PropTypes.number, color: PropTypes.any };