react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 391 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgZzzLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M11 11v2l-5.327 6H11v2H3v-2l5.326-6H3v-2zm10-8v2l-5.327 6H21v2h-8v-2l5.326-6H13V3z" />
</Svg>
);
export default SvgZzzLine;