@rxflow/base
Version:
BaseFlow - 核心 Flow 组件库
26 lines (25 loc) • 745 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
/**
* @author: yanxianliang
* @date: 2025-07-23 16:12
* @modified:2025/7/23 16:12 by yanxianliang
* @desc: ArrowClosedSymbol
*
* Copyright (c) 2025 by yanxianliang, All Rights Reserved.
*/
export var ArrowClosedSymbol = function ArrowClosedSymbol(_ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'none' : _ref$color,
_ref$strokeWidth = _ref.strokeWidth,
strokeWidth = _ref$strokeWidth === void 0 ? 1 : _ref$strokeWidth;
return /*#__PURE__*/_jsx("polyline", {
style: {
stroke: color,
fill: color,
strokeWidth: strokeWidth
},
strokeLinecap: "round",
strokeLinejoin: "round",
points: "-5,-4 0,0 -5,4 -5,-4"
});
};