sperm-outline from Health Icons by Resolve to Save Lives · Outline · Contraceptives · MIT Free for personal and commercial use.

Name
sperm-outline
Set
Health Icons
Style
Outline
Category
Contraceptives
Viewbox
48×48
License
MIT
Aliases
sperm2x-outline

3 other variants in Health Icons

The same icon in other sets

More contraceptives icons from Health Icons

Use the sperm icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><path fill="currentColor" fill-rule="evenodd" d="M31.194 8.632c2.923-2.923 7.494-3.653 10.174-.973s1.95 7.25-.973 10.174c-2.298 2.297-5.519 3.206-8.125 2.267a.3.3 0 0 0-.148-.018l-.027.008l-.023.023a4.32 4.32 0 0 1-3.298 1.37l-3.013-.112c-1.61-.06-2.807 1.578-2.283 3.059l.256.723c1.447 4.089-1.828 8.432-6.161 8.23l-1.836-.084a.435.435 0 0 0-.435.498l.29 1.523c.565 2.956-1.544 5.823-4.532 6.206l-1.365.174a2.372 2.372 0 0 1-.602-4.704l1.468-.188a.437.437 0 0 0 .37-.496l-.29-1.523c-.63-3.303 2.06-6.398 5.42-6.242l1.835.086c.955.044 1.67-.934 1.362-1.803l-.256-.724c-1.657-4.683 2.069-9.673 7.039-9.488l2.78.104l.034-.033l.007-.025a.3.3 0 0 0-.012-.136c-.807-2.563.11-5.663 2.344-7.896m-2.34 8.058v-.001zm11.1-7.617c-1.62-1.62-4.893-1.48-7.345.973c-1.815 1.815-2.392 4.165-1.852 5.882c.214.68.134 1.55-.485 2.171l-.175.176c-.286.299-.691.47-1.117.454l-3.014-.112c-3.582-.134-6.257 3.492-5.079 6.822l.256.723c.79 2.23-.99 4.578-3.34 4.469l-1.835-.086c-2.072-.096-3.75 1.84-3.363 3.87l.29 1.522c.262 1.368-.708 2.679-2.08 2.855l-1.468.188a.371.371 0 1 0 .094.737l1.365-.175c1.86-.239 3.167-2.04 2.822-3.848l-.29-1.522c-.291-1.525.943-2.943 2.492-2.871l1.836.085c2.937.137 5.148-2.837 4.183-5.566l-.256-.723c-1.003-2.835 1.246-5.836 4.242-5.724l3.014.112a2.32 2.32 0 0 0 1.772-.748l.011-.012l.048-.048c.65-.652 1.57-.71 2.268-.459c1.728.623 4.161.072 6.033-1.8c2.452-2.452 2.593-5.725.973-7.345" clip-rule="evenodd"/></svg>

React

import type { SVGProps } from "react";

export function HealthiconsSpermOutline(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><path fill="currentColor" fillRule="evenodd" d="M31.194 8.632c2.923-2.923 7.494-3.653 10.174-.973s1.95 7.25-.973 10.174c-2.298 2.297-5.519 3.206-8.125 2.267a.3.3 0 0 0-.148-.018l-.027.008l-.023.023a4.32 4.32 0 0 1-3.298 1.37l-3.013-.112c-1.61-.06-2.807 1.578-2.283 3.059l.256.723c1.447 4.089-1.828 8.432-6.161 8.23l-1.836-.084a.435.435 0 0 0-.435.498l.29 1.523c.565 2.956-1.544 5.823-4.532 6.206l-1.365.174a2.372 2.372 0 0 1-.602-4.704l1.468-.188a.437.437 0 0 0 .37-.496l-.29-1.523c-.63-3.303 2.06-6.398 5.42-6.242l1.835.086c.955.044 1.67-.934 1.362-1.803l-.256-.724c-1.657-4.683 2.069-9.673 7.039-9.488l2.78.104l.034-.033l.007-.025a.3.3 0 0 0-.012-.136c-.807-2.563.11-5.663 2.344-7.896m-2.34 8.058v-.001zm11.1-7.617c-1.62-1.62-4.893-1.48-7.345.973c-1.815 1.815-2.392 4.165-1.852 5.882c.214.68.134 1.55-.485 2.171l-.175.176c-.286.299-.691.47-1.117.454l-3.014-.112c-3.582-.134-6.257 3.492-5.079 6.822l.256.723c.79 2.23-.99 4.578-3.34 4.469l-1.835-.086c-2.072-.096-3.75 1.84-3.363 3.87l.29 1.522c.262 1.368-.708 2.679-2.08 2.855l-1.468.188a.371.371 0 1 0 .094.737l1.365-.175c1.86-.239 3.167-2.04 2.822-3.848l-.29-1.522c-.291-1.525.943-2.943 2.492-2.871l1.836.085c2.937.137 5.148-2.837 4.183-5.566l-.256-.723c-1.003-2.835 1.246-5.836 4.242-5.724l3.014.112a2.32 2.32 0 0 0 1.772-.748l.011-.012l.048-.048c.65-.652 1.57-.71 2.268-.459c1.728.623 4.161.072 6.033-1.8c2.452-2.452 2.593-5.725.973-7.345" clipRule="evenodd"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><path fill="currentColor" fill-rule="evenodd" d="M31.194 8.632c2.923-2.923 7.494-3.653 10.174-.973s1.95 7.25-.973 10.174c-2.298 2.297-5.519 3.206-8.125 2.267a.3.3 0 0 0-.148-.018l-.027.008l-.023.023a4.32 4.32 0 0 1-3.298 1.37l-3.013-.112c-1.61-.06-2.807 1.578-2.283 3.059l.256.723c1.447 4.089-1.828 8.432-6.161 8.23l-1.836-.084a.435.435 0 0 0-.435.498l.29 1.523c.565 2.956-1.544 5.823-4.532 6.206l-1.365.174a2.372 2.372 0 0 1-.602-4.704l1.468-.188a.437.437 0 0 0 .37-.496l-.29-1.523c-.63-3.303 2.06-6.398 5.42-6.242l1.835.086c.955.044 1.67-.934 1.362-1.803l-.256-.724c-1.657-4.683 2.069-9.673 7.039-9.488l2.78.104l.034-.033l.007-.025a.3.3 0 0 0-.012-.136c-.807-2.563.11-5.663 2.344-7.896m-2.34 8.058v-.001zm11.1-7.617c-1.62-1.62-4.893-1.48-7.345.973c-1.815 1.815-2.392 4.165-1.852 5.882c.214.68.134 1.55-.485 2.171l-.175.176c-.286.299-.691.47-1.117.454l-3.014-.112c-3.582-.134-6.257 3.492-5.079 6.822l.256.723c.79 2.23-.99 4.578-3.34 4.469l-1.835-.086c-2.072-.096-3.75 1.84-3.363 3.87l.29 1.522c.262 1.368-.708 2.679-2.08 2.855l-1.468.188a.371.371 0 1 0 .094.737l1.365-.175c1.86-.239 3.167-2.04 2.822-3.848l-.29-1.522c-.291-1.525.943-2.943 2.492-2.871l1.836.085c2.937.137 5.148-2.837 4.183-5.566l-.256-.723c-1.003-2.835 1.246-5.836 4.242-5.724l3.014.112a2.32 2.32 0 0 0 1.772-.748l.011-.012l.048-.048c.65-.652 1.57-.71 2.268-.459c1.728.623 4.161.072 6.033-1.8c2.452-2.452 2.593-5.725.973-7.345" clip-rule="evenodd"/></svg>
</template>

CSS

.icon-sperm-outline {
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M31.194%208.632c2.923-2.923%207.494-3.653%2010.174-.973s1.95%207.25-.973%2010.174c-2.298%202.297-5.519%203.206-8.125%202.267a.3.3%200%200%200-.148-.018l-.027.008l-.023.023a4.32%204.32%200%200%201-3.298%201.37l-3.013-.112c-1.61-.06-2.807%201.578-2.283%203.059l.256.723c1.447%204.089-1.828%208.432-6.161%208.23l-1.836-.084a.435.435%200%200%200-.435.498l.29%201.523c.565%202.956-1.544%205.823-4.532%206.206l-1.365.174a2.372%202.372%200%200%201-.602-4.704l1.468-.188a.437.437%200%200%200%20.37-.496l-.29-1.523c-.63-3.303%202.06-6.398%205.42-6.242l1.835.086c.955.044%201.67-.934%201.362-1.803l-.256-.724c-1.657-4.683%202.069-9.673%207.039-9.488l2.78.104l.034-.033l.007-.025a.3.3%200%200%200-.012-.136c-.807-2.563.11-5.663%202.344-7.896m-2.34%208.058v-.001zm11.1-7.617c-1.62-1.62-4.893-1.48-7.345.973c-1.815%201.815-2.392%204.165-1.852%205.882c.214.68.134%201.55-.485%202.171l-.175.176c-.286.299-.691.47-1.117.454l-3.014-.112c-3.582-.134-6.257%203.492-5.079%206.822l.256.723c.79%202.23-.99%204.578-3.34%204.469l-1.835-.086c-2.072-.096-3.75%201.84-3.363%203.87l.29%201.522c.262%201.368-.708%202.679-2.08%202.855l-1.468.188a.371.371%200%201%200%20.094.737l1.365-.175c1.86-.239%203.167-2.04%202.822-3.848l-.29-1.522c-.291-1.525.943-2.943%202.492-2.871l1.836.085c2.937.137%205.148-2.837%204.183-5.566l-.256-.723c-1.003-2.835%201.246-5.836%204.242-5.724l3.014.112a2.32%202.32%200%200%200%201.772-.748l.011-.012l.048-.048c.65-.652%201.57-.71%202.268-.459c1.728.623%204.161.072%206.033-1.8c2.452-2.452%202.593-5.725.973-7.345%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M31.194%208.632c2.923-2.923%207.494-3.653%2010.174-.973s1.95%207.25-.973%2010.174c-2.298%202.297-5.519%203.206-8.125%202.267a.3.3%200%200%200-.148-.018l-.027.008l-.023.023a4.32%204.32%200%200%201-3.298%201.37l-3.013-.112c-1.61-.06-2.807%201.578-2.283%203.059l.256.723c1.447%204.089-1.828%208.432-6.161%208.23l-1.836-.084a.435.435%200%200%200-.435.498l.29%201.523c.565%202.956-1.544%205.823-4.532%206.206l-1.365.174a2.372%202.372%200%200%201-.602-4.704l1.468-.188a.437.437%200%200%200%20.37-.496l-.29-1.523c-.63-3.303%202.06-6.398%205.42-6.242l1.835.086c.955.044%201.67-.934%201.362-1.803l-.256-.724c-1.657-4.683%202.069-9.673%207.039-9.488l2.78.104l.034-.033l.007-.025a.3.3%200%200%200-.012-.136c-.807-2.563.11-5.663%202.344-7.896m-2.34%208.058v-.001zm11.1-7.617c-1.62-1.62-4.893-1.48-7.345.973c-1.815%201.815-2.392%204.165-1.852%205.882c.214.68.134%201.55-.485%202.171l-.175.176c-.286.299-.691.47-1.117.454l-3.014-.112c-3.582-.134-6.257%203.492-5.079%206.822l.256.723c.79%202.23-.99%204.578-3.34%204.469l-1.835-.086c-2.072-.096-3.75%201.84-3.363%203.87l.29%201.522c.262%201.368-.708%202.679-2.08%202.855l-1.468.188a.371.371%200%201%200%20.094.737l1.365-.175c1.86-.239%203.167-2.04%202.822-3.848l-.29-1.522c-.291-1.525.943-2.943%202.492-2.871l1.836.085c2.937.137%205.148-2.837%204.183-5.566l-.256-.723c-1.003-2.835%201.246-5.836%204.242-5.724l3.014.112a2.32%202.32%200%200%200%201.772-.748l.011-.012l.048-.048c.65-.652%201.57-.71%202.268-.459c1.728.623%204.161.072%206.033-1.8c2.452-2.452%202.593-5.725.973-7.345%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/healthicons/sperm-outline.svg?color=%231a73e8&size=48