26 lines
708 B
TypeScript
26 lines
708 B
TypeScript
import { memo } from 'react';
|
|
import type { FC, ReactNode } from 'react';
|
|
|
|
import resets from '../../_resets.module.css';
|
|
import classes from './Frame6.module.css';
|
|
import { VectorIcon } from './VectorIcon.js';
|
|
|
|
interface Props {
|
|
className?: string;
|
|
classes?: {
|
|
vector?: string;
|
|
root?: string;
|
|
};
|
|
swap?: {
|
|
vector?: ReactNode;
|
|
};
|
|
}
|
|
/* @figmaId 5524:24082 */
|
|
export const Frame6: FC<Props> = memo(function Frame6(props = {}) {
|
|
return (
|
|
<div className={`${resets.storybrainResets} ${props.classes?.root || ''} ${props.className || ''} ${classes.root}`}>
|
|
<div className={classes.vector2}>{props.swap?.vector || <VectorIcon className={classes.icon} />}</div>
|
|
</div>
|
|
);
|
|
});
|