import React from "react"; import classes from "./classes.module.scss"; import Image from "next/image"; import WarningIcon from "@Assets/Icons/warning.svg"; type IProps = {}; type IState = {}; export default class WarningBadge extends React.Component { public override render(): JSX.Element { return (
warning icon
); } }