import { memo } from 'react'; import type { FC, ReactNode } from 'react'; import resets from '../../_resets.module.css'; import classes from './Frame3.module.css'; import { VectorStrokeIcon2 } from './VectorStrokeIcon2.js'; import { VectorStrokeIcon } from './VectorStrokeIcon.js'; interface Props { className?: string; classes?: { root?: string; }; swap?: { vectorStroke?: ReactNode; vectorStroke2?: ReactNode; }; } /* @figmaId 5403:957 */ export const Frame3: FC = memo(function Frame3(props = {}) { return (
{props.swap?.vectorStroke || }
{props.swap?.vectorStroke2 || }
); });