@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
6 lines • 351 B
JavaScript
import Svg, { Path } from "react-native-svg";
const SvgComponent = ({ height, width, color }) => (<Svg width={width} height={height} fill='none' viewBox='0 0 24 24'>
<Path stroke={color} strokeLinecap='round' strokeWidth={1.5} d='M4 6h16M4 10h16M4 14h16M4 18h16'/>
</Svg>);
export default SvgComponent;
//# sourceMappingURL=rearrange-fill.js.map