@modern-js/plugin-rspress
Version:
A Modern.js plugin to integrate rspress
17 lines (16 loc) • 400 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
const SvgRight = props =>
/* @__PURE__ */ jsx('svg', {
width: 24,
height: 24,
fill: 'none',
viewBox: '0 0 48 48',
...props,
children: /* @__PURE__ */ jsx('path', {
stroke: '#4E5969',
strokeWidth: 2,
d: 'm16 39.513 15.556-15.557L16 8.4',
}),
});
export { SvgRight as default };