import React from 'react' /** * A component to display a number or character inside a circle * * @component * @param {object} props - All component props * @param {number|string} props.nr - The number to display * @param {string} [props.color = secondary] - One of the DaisyUI color names * @returns {JSX.Element} */ export const NumberCircle = ({ nr, color = 'secondary' }) => ( {nr} )