@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 695 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const MoreLine = /* @__PURE__ */ memo(function MoreLine(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M4.5 10.5c-.825 0-1.5.675-1.5 1.5s.675 1.5 1.5 1.5S6 12.825 6 12s-.675-1.5-1.5-1.5m15 0c-.825 0-1.5.675-1.5 1.5s.675 1.5 1.5 1.5S21 12.825 21 12s-.675-1.5-1.5-1.5m-7.5 0c-.825 0-1.5.675-1.5 1.5s.675 1.5 1.5 1.5 1.5-.675 1.5-1.5-.675-1.5-1.5-1.5"/>
</Svg>);
});
/**
* Remix Icon: More Line
* @see {@link https://remixicon.com/icon/more-line Remix Icon Docs}
*/
export { MoreLine };