import { memo } from "react"; import type { FC, ReactNode } from "react"; import resets from "../../_resets.module.css"; import classes from "./Frame876_Property1Variant2.module.css"; interface Props { className?: string; classes?: { root?: string; rectangle678?: string; }; text?: { unnamed?: ReactNode; _100?: ReactNode; }; } /* @figmaId 5637:9228 */ export const Frame876_Property1Variant2: FC = memo( function Frame876_Property1Variant2(props = {}) { return (
{props.text?.unnamed != null ? ( props.text?.unnamed ) : (
客户名称
)}
{props.text?._100 != null ? ( props.text?._100 ) : (
100
)}
); } );