react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 566 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgRoundedCorner(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M21 19v2h-2v-2h2zm-4 0v2h-2v-2h2zm-4 0v2h-2v-2h2zm-4 0v2H7v-2h2zm-4 0v2H3v-2h2zm16-4v2h-2v-2h2zM5 15v2H3v-2h2zm0-4v2H3v-2h2zm11-8a5.002 5.002 0 014.995 4.783L21 8v5h-2V8a3.01 3.01 0 00-2.824-2.995L16 5h-5V3h5zM5 7v2H3V7h2zm0-4v2H3V3h2zm4 0v2H7V3h2z" />
</Svg>
);
}
export default SvgRoundedCorner;