@iconscout/react-native-unicons
Version:
Unicons - 4,500+ vector icons as easy to use vector React Native Components
31 lines (26 loc) • 1.45 kB
JavaScript
import React from "react";
import Svg, { Path } from "react-native-svg";
import PropTypes from "prop-types";
const UilCoronavirus = props => {
const { color, size, ...otherProps } = props;
return (
<Svg
width={size}
height={size}
viewBox="0 0 24 24"
fill={color}
{...otherProps}
>
<Path d="M9.5 9a1.5 1.5 0 1 0 1.5 1.5A1.5 1.5 0 0 0 9.5 9ZM9 14a1 1 0 1 0 1 1 1 1 0 0 0-1-1Zm6-6a1 1 0 1 0 1 1 1 1 0 0 0-1-1Zm-.5 4a1.5 1.5 0 1 0 1.5 1.5 1.5 1.5 0 0 0-1.5-1.5Zm7.5-1h-1.059a8.952 8.952 0 0 0-1.916-4.61l.753-.754a1 1 0 0 0-1.414-1.414l-.753.753A8.952 8.952 0 0 0 13 3.059V2a1 1 0 0 0-2 0v1.059a8.952 8.952 0 0 0-4.61 1.916l-.754-.753a1 1 0 0 0-1.414 1.414l.753.753A8.952 8.952 0 0 0 3.059 11H2a1 1 0 0 0 0 2h1.059a8.952 8.952 0 0 0 1.916 4.61l-.753.754a1 1 0 1 0 1.414 1.414l.753-.753A8.952 8.952 0 0 0 11 20.941V22a1 1 0 0 0 2 0v-1.059a8.952 8.952 0 0 0 4.61-1.916l.754.753a1 1 0 0 0 1.414-1.414l-.753-.753A8.952 8.952 0 0 0 20.941 13H22a1 1 0 0 0 0-2Zm-4 2h.92A7.004 7.004 0 0 1 13 18.92V17a1 1 0 0 0-2 0v1.92A7.004 7.004 0 0 1 5.08 13H6a1 1 0 0 0 0-2h-.92A7.004 7.004 0 0 1 11 5.08V7a1 1 0 0 0 2 0V5.08A7.004 7.004 0 0 1 18.92 11H18a1 1 0 0 0 0 2Z" />
</Svg>
);
};
UilCoronavirus.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
};
UilCoronavirus.defaultProps = {
color: "currentColor",
size: "24"
};
export default UilCoronavirus;