"use client"; import { memo } from "react"; import { getAssetPath, quoteStatementShapePath } from "../../../../lib/assetUtils"; /** Figma: Section / Quote — **`shape-qoute.svg`** (22137:890679). */ const EDGE_MASK = "linear-gradient(to right, #fff 0%, #fff 14%, rgba(255,255,255,0) 30%, rgba(255,255,255,0) 70%, #fff 86%, #fff 100%)"; const GRAIN_MULTIPLY_FILTER = 'url(\'data:image/svg+xml;charset=utf-8,#grain\')'; const QuoteStatementDecor = memo<{ className?: string }>(({ className = "" }) => { const src = getAssetPath(quoteStatementShapePath()); const bg = `url("${src}")`; return (
); }); QuoteStatementDecor.displayName = "QuoteStatementDecor"; export default QuoteStatementDecor;