Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 2x | import * as React from 'react';
import { SVGProps } from 'react';
interface SVGRProps {
title?: string;
titleId?: string;
}
const SvgIconPlantsFilled = ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => (
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' aria-labelledby={titleId} {...props}>
{title ? <title id={titleId}>{title}</title> : null}
<path d='M12.215 1.242c.776 0 1.496.247 2 .751.242.242.417.538.541.86.226-.067.454-.138.68-.133a2.47 2.47 0 0 1 1.597.653c.597.538.94 1.376.898 2.266.849.058 1.618.463 2.067 1.122.475.697.55 1.656.16 2.54.352.19.65.455.878.753a3.38 3.38 0 0 1 .686 2.049 3.23 3.23 0 0 1-1.185 2.514c-.615.498-1.494.68-2.46.633-.145.75-.43 1.447-.968 1.955-.719.679-1.735 1.05-2.892 1.05v.75c0 .367.122 1.022.404 1.487.283.464.619.765 1.347.765a.75.75 0 0 1 0 1.501H8.463a.751.751 0 0 1 0-1.501c.728 0 1.064-.3 1.346-.765s.405-1.12.405-1.487v-.75c-1.157 0-2.174-.371-2.892-1.05-.538-.508-.823-1.206-.967-1.954-.967.046-1.846-.136-2.461-.634a3.23 3.23 0 0 1-1.186-2.514c0-.724.23-1.453.686-2.049.229-.298.527-.563.878-.752-.389-.885-.314-1.844.161-2.541.449-.659 1.218-1.064 2.067-1.122-.043-.89.3-1.728.897-2.266a2.47 2.47 0 0 1 1.598-.653c.226-.005.454.066.68.133.124-.322.298-.618.54-.86.505-.504 1.225-.751 2-.751m-.5 15.543v2.22c0 .63-.146 1.47-.617 2.252h2.234a4.44 4.44 0 0 1-.616-2.252v-2.22z' />
</svg>
);
export default SvgIconPlantsFilled;
|