Clover icon
Used to represent component connections within Loop. The Clover icon is part of Microsoft's Fluent UI System Icons, available here in filled and regular (outlined) styles on a 24 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Use the Clover icon in React
Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.
npm install @fluentui/react-icons
import { Clover24Regular, Clover24Filled } from "@fluentui/react-icons";
export function Example() {
return <Clover24Regular aria-label="Clover" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_clover_24_regular.svg" width="24" height="24" alt="Clover"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.75 2C4.12665 2 2 4.12665 2 6.75C2 9.37335 4.12665 11.5 6.75 11.5H10.75C11.1642 11.5 11.5 11.1642 11.5 10.75V6.75C11.5 4.12665 9.37335 2 6.75 2ZM3.5 6.75C3.5 4.95507 4.95507 3.5 6.75 3.5C8.54493 3.5 10 4.95507 10 6.75V10H6.75C4.95507 10 3.5 8.54493 3.5 6.75ZM6.75 22C4.12665 22 2 19.8734 2 17.25C2 14.6266 4.12665 12.5 6.75 12.5H10.75C11.1642 12.5 11.5 12.8358 11.5 13.25V17.25C11.5 19.8734 9.37335 22 6.75 22ZM3.5 17.25C3.5 19.0449 4.95507 20.5 6.75 20.5C8.54493 20.5 10 19.0449 10 17.25V14H6.75C4.95507 14 3.5 15.4551 3.5 17.25ZM22 6.75C22 4.12665 19.8734 2 17.25 2C14.6266 2 12.5 4.12665 12.5 6.75V10.75C12.5 11.1642 12.8358 11.5 13.25 11.5H17.25C19.8734 11.5 22 9.37335 22 6.75ZM17.25 3.5C19.0449 3.5 20.5 4.95507 20.5 6.75C20.5 8.54493 19.0449 10 17.25 10H14V6.75C14 4.95507 15.4551 3.5 17.25 3.5ZM17.25 22C19.8734 22 22 19.8734 22 17.25C22 14.6266 19.8734 12.5 17.25 12.5H13.25C12.8358 12.5 12.5 12.8358 12.5 13.25V17.25C12.5 19.8734 14.6266 22 17.25 22ZM20.5 17.25C20.5 19.0449 19.0449 20.5 17.25 20.5C15.4551 20.5 14 19.0449 14 17.25V14H17.25C19.0449 14 20.5 15.4551 20.5 17.25Z" fill="currentColor"/></svg>Use it from the SVG package
Microsoft's @fluentui/svg-icons package contains the raw SVG files, which works well with bundlers that import SVGs:
npm install @fluentui/svg-icons
import icon from "@fluentui/svg-icons/icons/clover_24_regular.svg";Details
| Name | Clover |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_clover_24_regular.svg |
| Filled file | ic_fluent_clover_24_filled.svg |
| React components | Clover24Regular, Clover24Filled |
| License | MIT (© Microsoft Corporation) |