import { memo } from 'react'; import type { FC } from 'react'; import resets from '../../_resets.module.css'; import classes from './Frame2.module.css'; import { VectorIcon } from './VectorIcon.js'; interface Props { className?: string; classes?: { vector?: string; }; } /* @figmaId 5524:23922 */ export const Frame2: FC = memo(function Frame2(props = {}) { return (
); });