import "./check.css"; import PropTypes from "prop-types"; import CheckGrey from "../../assets/icons/check.svg?react"; import CheckOutlined from "../../assets/icons/check-outlined.svg?react"; import { Stack, Typography } from "@mui/material"; import { useTheme } from "@emotion/react"; /** * `Check` is a functional React component that displays a check icon and a label. * * @component * @param {Object} props - The properties that define the `Check` component. * @param {string} props.text - The text to be displayed as the label next to the check icon. * @param {'info' | 'error' | 'success'} [props.variant='info'] - The variant of the check component, affecting its styling. * @param {boolean} [props.outlined] - Whether the check icon should be outlined or not. * * @example * // To use this component, import it and use it in your JSX like this: * * * @returns {React.Element} The `Check` component with a check icon and a label, defined by the `text` prop. */ const Check = ({ text, variant = "info", outlined = false }) => { const theme = useTheme(); return ( {outlined ? ( ) : ( )} {text} ); }; Check.propTypes = { text: PropTypes.string.isRequired, variant: PropTypes.oneOf(["info", "error", "success"]), outlined: PropTypes.bool, }; export default Check;