antd
Version:
An enterprise-class UI design language and React components implementation
18 lines (17 loc) • 450 B
JavaScript
"use client";
import * as React from 'react';
const PanelArrow = props => {
const {
prefixCls
} = props;
return /*#__PURE__*/React.createElement("svg", {
"aria-hidden": true,
className: `${prefixCls}-panel-arrow`,
viewBox: "0 0 100 100",
xmlns: "http://www.w3.org/2000/svg",
preserveAspectRatio: "none"
}, /*#__PURE__*/React.createElement("path", {
d: "M 0 0 L 100 50 L 0 100"
}));
};
export default PanelArrow;