import { memo } from 'react'; import type { FC } from 'react'; import resets from '../../_resets.module.css'; import classes from './Frame4.module.css'; import { SubtractIcon } from './SubtractIcon.js'; interface Props { className?: string; } /* @figmaId 5403:1009 */ export const Frame4: FC = memo(function Frame4(props = {}) { return (
); });