flower 5 icon
flower-5-line from MingCute Icon by MingCute Design · Line · Apache-2.0 Free for personal and commercial use.
- Name
- flower-5-line
- Set
- MingCute Icon
- Style
- Line
- Viewbox
- 24×24
- License
- Apache 2.0
1 other variant in MingCute Icon
Related icons in MingCute Icon
Use the flower 5 icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" d="M9.409 5.744c-1.522-.786-2.991-.89-3.773-.108c-.782.781-.678 2.25.108 3.772m3.665-3.664a9.1 9.1 0 0 1 2.237 1.66c1.05 1.049 1.476 1.98 1.348 2.86m.937 1.212C14.644 10.943 15 9.984 15 8.5a9.1 9.1 0 0 0-.409-2.756C14.071 4.112 13.105 3 12 3S9.93 4.112 9.409 5.744m5.182 0c1.522-.786 2.992-.89 3.773-.108c.782.781.678 2.251-.108 3.773m-5.732 4.522c.533.713 1.492 1.07 2.976 1.07a9.1 9.1 0 0 0 2.756-.41c1.631-.52 2.744-1.485 2.744-2.59c0-1.106-1.113-2.072-2.744-2.592m0 0a9.2 9.2 0 0 1-1.66 2.237c-1.049 1.05-1.98 1.476-2.86 1.348m-2.73.742c-.128.88.298 1.811 1.348 2.86a9.2 9.2 0 0 0 2.237 1.66c1.522.786 2.991.89 3.773.108c.781-.781.678-2.25-.108-3.772m-8.187-2.068C9.356 13.057 9 14.016 9 15.5c0 .999.149 1.942.409 2.756C9.929 19.888 10.895 21 12 21s2.07-1.112 2.591-2.744m-4.327-7.25c-.88-.128-1.811.299-2.86 1.348a9.2 9.2 0 0 0-1.66 2.237c-.786 1.522-.89 2.992-.108 3.773s2.251.678 3.773-.108m2.067-8.187C10.943 9.356 9.984 9 8.5 9a9.1 9.1 0 0 0-2.756.41C4.113 9.928 3 10.894 3 11.998c0 1.106 1.113 2.072 2.744 2.592m5.732-4.522a2 2 0 0 1 1.518.195m-1.518-.195c-.517.14-.95.482-1.212.937m3.472 1.988a2 2 0 0 0 .195-1.518a2 2 0 0 0-.936-1.212m.74 2.73a2 2 0 0 1-1.21.937m0 0a2 2 0 0 1-1.52-.195m-.74-2.73a2 2 0 0 0-.196 1.518c.14.517.482.95.936 1.212"/></svg>
React
import type { SVGProps } from "react";
export function MingcuteFlower5Line(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" strokeWidth="2" d="M9.409 5.744c-1.522-.786-2.991-.89-3.773-.108c-.782.781-.678 2.25.108 3.772m3.665-3.664a9.1 9.1 0 0 1 2.237 1.66c1.05 1.049 1.476 1.98 1.348 2.86m.937 1.212C14.644 10.943 15 9.984 15 8.5a9.1 9.1 0 0 0-.409-2.756C14.071 4.112 13.105 3 12 3S9.93 4.112 9.409 5.744m5.182 0c1.522-.786 2.992-.89 3.773-.108c.782.781.678 2.251-.108 3.773m-5.732 4.522c.533.713 1.492 1.07 2.976 1.07a9.1 9.1 0 0 0 2.756-.41c1.631-.52 2.744-1.485 2.744-2.59c0-1.106-1.113-2.072-2.744-2.592m0 0a9.2 9.2 0 0 1-1.66 2.237c-1.049 1.05-1.98 1.476-2.86 1.348m-2.73.742c-.128.88.298 1.811 1.348 2.86a9.2 9.2 0 0 0 2.237 1.66c1.522.786 2.991.89 3.773.108c.781-.781.678-2.25-.108-3.772m-8.187-2.068C9.356 13.057 9 14.016 9 15.5c0 .999.149 1.942.409 2.756C9.929 19.888 10.895 21 12 21s2.07-1.112 2.591-2.744m-4.327-7.25c-.88-.128-1.811.299-2.86 1.348a9.2 9.2 0 0 0-1.66 2.237c-.786 1.522-.89 2.992-.108 3.773s2.251.678 3.773-.108m2.067-8.187C10.943 9.356 9.984 9 8.5 9a9.1 9.1 0 0 0-2.756.41C4.113 9.928 3 10.894 3 11.998c0 1.106 1.113 2.072 2.744 2.592m5.732-4.522a2 2 0 0 1 1.518.195m-1.518-.195c-.517.14-.95.482-1.212.937m3.472 1.988a2 2 0 0 0 .195-1.518a2 2 0 0 0-.936-1.212m.74 2.73a2 2 0 0 1-1.21.937m0 0a2 2 0 0 1-1.52-.195m-.74-2.73a2 2 0 0 0-.196 1.518c.14.517.482.95.936 1.212"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" d="M9.409 5.744c-1.522-.786-2.991-.89-3.773-.108c-.782.781-.678 2.25.108 3.772m3.665-3.664a9.1 9.1 0 0 1 2.237 1.66c1.05 1.049 1.476 1.98 1.348 2.86m.937 1.212C14.644 10.943 15 9.984 15 8.5a9.1 9.1 0 0 0-.409-2.756C14.071 4.112 13.105 3 12 3S9.93 4.112 9.409 5.744m5.182 0c1.522-.786 2.992-.89 3.773-.108c.782.781.678 2.251-.108 3.773m-5.732 4.522c.533.713 1.492 1.07 2.976 1.07a9.1 9.1 0 0 0 2.756-.41c1.631-.52 2.744-1.485 2.744-2.59c0-1.106-1.113-2.072-2.744-2.592m0 0a9.2 9.2 0 0 1-1.66 2.237c-1.049 1.05-1.98 1.476-2.86 1.348m-2.73.742c-.128.88.298 1.811 1.348 2.86a9.2 9.2 0 0 0 2.237 1.66c1.522.786 2.991.89 3.773.108c.781-.781.678-2.25-.108-3.772m-8.187-2.068C9.356 13.057 9 14.016 9 15.5c0 .999.149 1.942.409 2.756C9.929 19.888 10.895 21 12 21s2.07-1.112 2.591-2.744m-4.327-7.25c-.88-.128-1.811.299-2.86 1.348a9.2 9.2 0 0 0-1.66 2.237c-.786 1.522-.89 2.992-.108 3.773s2.251.678 3.773-.108m2.067-8.187C10.943 9.356 9.984 9 8.5 9a9.1 9.1 0 0 0-2.756.41C4.113 9.928 3 10.894 3 11.998c0 1.106 1.113 2.072 2.744 2.592m5.732-4.522a2 2 0 0 1 1.518.195m-1.518-.195c-.517.14-.95.482-1.212.937m3.472 1.988a2 2 0 0 0 .195-1.518a2 2 0 0 0-.936-1.212m.74 2.73a2 2 0 0 1-1.21.937m0 0a2 2 0 0 1-1.52-.195m-.74-2.73a2 2 0 0 0-.196 1.518c.14.517.482.95.936 1.212"/></svg> </template>
CSS
.icon-flower-5-line {
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%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%222%22%20d%3D%22M9.409%205.744c-1.522-.786-2.991-.89-3.773-.108c-.782.781-.678%202.25.108%203.772m3.665-3.664a9.1%209.1%200%200%201%202.237%201.66c1.05%201.049%201.476%201.98%201.348%202.86m.937%201.212C14.644%2010.943%2015%209.984%2015%208.5a9.1%209.1%200%200%200-.409-2.756C14.071%204.112%2013.105%203%2012%203S9.93%204.112%209.409%205.744m5.182%200c1.522-.786%202.992-.89%203.773-.108c.782.781.678%202.251-.108%203.773m-5.732%204.522c.533.713%201.492%201.07%202.976%201.07a9.1%209.1%200%200%200%202.756-.41c1.631-.52%202.744-1.485%202.744-2.59c0-1.106-1.113-2.072-2.744-2.592m0%200a9.2%209.2%200%200%201-1.66%202.237c-1.049%201.05-1.98%201.476-2.86%201.348m-2.73.742c-.128.88.298%201.811%201.348%202.86a9.2%209.2%200%200%200%202.237%201.66c1.522.786%202.991.89%203.773.108c.781-.781.678-2.25-.108-3.772m-8.187-2.068C9.356%2013.057%209%2014.016%209%2015.5c0%20.999.149%201.942.409%202.756C9.929%2019.888%2010.895%2021%2012%2021s2.07-1.112%202.591-2.744m-4.327-7.25c-.88-.128-1.811.299-2.86%201.348a9.2%209.2%200%200%200-1.66%202.237c-.786%201.522-.89%202.992-.108%203.773s2.251.678%203.773-.108m2.067-8.187C10.943%209.356%209.984%209%208.5%209a9.1%209.1%200%200%200-2.756.41C4.113%209.928%203%2010.894%203%2011.998c0%201.106%201.113%202.072%202.744%202.592m5.732-4.522a2%202%200%200%201%201.518.195m-1.518-.195c-.517.14-.95.482-1.212.937m3.472%201.988a2%202%200%200%200%20.195-1.518a2%202%200%200%200-.936-1.212m.74%202.73a2%202%200%200%201-1.21.937m0%200a2%202%200%200%201-1.52-.195m-.74-2.73a2%202%200%200%200-.196%201.518c.14.517.482.95.936%201.212%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%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%222%22%20d%3D%22M9.409%205.744c-1.522-.786-2.991-.89-3.773-.108c-.782.781-.678%202.25.108%203.772m3.665-3.664a9.1%209.1%200%200%201%202.237%201.66c1.05%201.049%201.476%201.98%201.348%202.86m.937%201.212C14.644%2010.943%2015%209.984%2015%208.5a9.1%209.1%200%200%200-.409-2.756C14.071%204.112%2013.105%203%2012%203S9.93%204.112%209.409%205.744m5.182%200c1.522-.786%202.992-.89%203.773-.108c.782.781.678%202.251-.108%203.773m-5.732%204.522c.533.713%201.492%201.07%202.976%201.07a9.1%209.1%200%200%200%202.756-.41c1.631-.52%202.744-1.485%202.744-2.59c0-1.106-1.113-2.072-2.744-2.592m0%200a9.2%209.2%200%200%201-1.66%202.237c-1.049%201.05-1.98%201.476-2.86%201.348m-2.73.742c-.128.88.298%201.811%201.348%202.86a9.2%209.2%200%200%200%202.237%201.66c1.522.786%202.991.89%203.773.108c.781-.781.678-2.25-.108-3.772m-8.187-2.068C9.356%2013.057%209%2014.016%209%2015.5c0%20.999.149%201.942.409%202.756C9.929%2019.888%2010.895%2021%2012%2021s2.07-1.112%202.591-2.744m-4.327-7.25c-.88-.128-1.811.299-2.86%201.348a9.2%209.2%200%200%200-1.66%202.237c-.786%201.522-.89%202.992-.108%203.773s2.251.678%203.773-.108m2.067-8.187C10.943%209.356%209.984%209%208.5%209a9.1%209.1%200%200%200-2.756.41C4.113%209.928%203%2010.894%203%2011.998c0%201.106%201.113%202.072%202.744%202.592m5.732-4.522a2%202%200%200%201%201.518.195m-1.518-.195c-.517.14-.95.482-1.212.937m3.472%201.988a2%202%200%200%200%20.195-1.518a2%202%200%200%200-.936-1.212m.74%202.73a2%202%200%200%201-1.21.937m0%200a2%202%200%200%201-1.52-.195m-.74-2.73a2%202%200%200%200-.196%201.518c.14.517.482.95.936%201.212%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/mingcute/flower-5-line.svg?color=%231a73e8&size=48