PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.16.9
GiveWP – Donation Plugin and Fundraising Platform v4.16.9
4.17.0 4.16.9 4.16.8.1 4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 All 256 releases
give / src / Campaigns / Blocks / CampaignStats / Icon.tsx

Icon.tsx in GiveWP – Donation Plugin and Fundraising Platform 4.16.9, at src/Campaigns/Blocks/CampaignStats/Icon.tsx

21 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import {Path, SVG} from '@wordpress/components';
2
3 export function StatsIcon() {
4 return (
5 <SVG width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
6 <Path
7 fillRule="evenodd"
8 clipRule="evenodd"
9 d="M3 2a1 1 0 0 1 1 1v14.8c0 .577 0 .949.024 1.232.022.272.06.372.085.422a1 1 0 0 0 .437.437c.05.025.15.063.422.085C5.25 20 5.623 20 6.2 20H21a1 1 0 1 1 0 2H6.162c-.528 0-.982 0-1.357-.03-.395-.033-.789-.104-1.167-.297a3 3 0 0 1-1.311-1.311c-.193-.378-.264-.772-.296-1.167A17.9 17.9 0 0 1 2 17.838V3a1 1 0 0 1 1-1z"
10 fill="#000"
11 />
12 <Path
13 fillRule="evenodd"
14 clipRule="evenodd"
15 d="M7 13.5a1 1 0 0 1 1 1v3a1 1 0 1 1-2 0v-3a1 1 0 0 1 1-1zM11.5 10.5a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0v-6a1 1 0 0 1 1-1zM16 7.5a1 1 0 0 1 1 1v9a1 1 0 1 1-2 0v-9a1 1 0 0 1 1-1zM20.5 4.5a1 1 0 0 1 1 1v12a1 1 0 1 1-2 0v-12a1 1 0 0 1 1-1z"
16 fill="#000"
17 />
18 </SVG>
19 );
20 }
21