import { SVGProps } from "react"; /** * Skunk silhouette for the `skunk` object label. * * react-icons has no skunk in any of its packs. The usable stand-ins are * either squirrels, which are indistinguishable from the `squirrel` label, or * animals such as porcupine and hedgehog that are themselves Frigate+ * candidate labels. * * Adapted from "skunk silhouette" by dear_theophilus, published by Openclipart * and released into the public domain, which permits reproduction, * distribution and derivative works: * https://openclipart.org/detail/170808/skunk-silhouette-by-dear_theophilus-170808 * * Changes from the original: the unused Inkscape text region was dropped, the * layer translate was folded into the viewBox, the viewBox was padded to give * the same optical margin as the surrounding react-icons, and the fill was * switched to currentColor. The white back stripe is negative space in a * single path under the default nonzero fill rule, so no fill-rule override is * needed here. * * Sized to sit alongside the react-icons set: currentColor fill and a 1em * default box. */ export default function SkunkIcon(props: SVGProps) { return ( ); }