@rxflow/base
Version:
BaseFlow - 核心 Flow 组件库
32 lines (30 loc) • 718 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ArrowClosedSymbol = void 0;
var _jsxRuntime = require("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.
*/
const ArrowClosedSymbol = ({
color = 'none',
strokeWidth = 1
}) => {
return /*#__PURE__*/(0, _jsxRuntime.jsx)("polyline", {
style: {
stroke: color,
fill: color,
strokeWidth
},
strokeLinecap: "round",
strokeLinejoin: "round",
points: "-5,-4 0,0 -5,4 -5,-4"
});
};
exports.ArrowClosedSymbol = ArrowClosedSymbol;