24 lines
576 B
TypeScript
24 lines
576 B
TypeScript
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<Props> = memo(function Frame2(props = {}) {
|
|
return (
|
|
<div className={`${resets.storybrainResets} ${classes.root}`}>
|
|
<div className={classes.vector2}>
|
|
<VectorIcon className={classes.icon} />
|
|
</div>
|
|
</div>
|
|
);
|
|
});
|