@jinshuju/field-icons-react-native
Version:
React Native icons for Jinshuju fields
10 lines • 591 B
JavaScript
const React = require("react");
import Svg, { G, Path } from "react-native-svg";
function FieldIconRadio({
title,
titleId,
...props
}) {
return <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" data-slot="icon" width="1em" height="1em" aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<G><Path d="M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z" /><Path d="M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-1.5 0a8.5 8.5 0 1 0-17 0 8.5 8.5 0 0 0 17 0Z" /></G></Svg>;
}
module.exports = FieldIconRadio;