josemi / icons
v0.7.0
soccer-field
v0.7.0
Download
Download the icon as SVG image.
Download Icon
Customize icon
Set your custom size or color and download the icon as SVG or PNG image.
Width
Height
Color
Get SVG
Get PNG
Using as SVG
Copy and paste the following SVG code into your HTML file where you want the icon to appear. Then, you can customize the SVG attributes, such as size or color, using inline styling or CSS classes.
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="1em" height="1em">
    <path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 5C5 5 3 5 3 7L3 17C3 19 5 19 5 19L19 19C19 19 21 19 21 17L21 7C21 5 19 5 19 5L5 5ZM12 6L12 18M9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12ZM3 9L6 9L6 15L3 15M21 9L18 9L18 15L21 15" />
</svg>
Using with React
Install @josemi-icons/react and import the icon component in your React application:
import {SoccerFieldIcon} from "@josemi-icons/react";

const MyComponent = () => {
    return (
        <SoccerFieldIcon />
    );
};
Using with CSS
Install @josemi-icons/css and include the icon as a CSS class:
<i class="ji-soccer-field"></i>