@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 459 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgListRadio = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M8.5 7a2 2 0 1 0-4 0 2 2 0 0 0 4 0Zm2 0a4 4 0 1 1-8 0 4 4 0 0 1 8 0ZM21 4h-8v2h8V4Zm0 7h-8v2h8v-2Zm0 7h-8v2h8v-2ZM6.5 19a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0 2a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm0-13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" />
</Svg>
);
export default SvgListRadio;