UNPKG

@rxflow/base

Version:

BaseFlow - 核心 Flow 组件库

31 lines (30 loc) 657 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Arrow = void 0; var _jsxRuntime = require("react/jsx-runtime"); /** * @author: yanxianliang * @date: 2025-07-23 16:19 * @modified:2025/7/23 16:19 by yanxianliang * @desc: Arrow Symbol * * Copyright (c) 2025 by yanxianliang, All Rights Reserved. */ const Arrow = ({ color = 'none', strokeWidth = 1 }) => { return /*#__PURE__*/(0, _jsxRuntime.jsx)("polyline", { style: { stroke: color, strokeWidth }, strokeLinecap: "round", strokeLinejoin: "round", fill: "none", points: "-5,-4 0,0 -5,4" }); }; exports.Arrow = Arrow;