PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.17.0
GiveWP – Donation Plugin and Fundraising Platform v4.17.0
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 / resources / admin / components / ExistingUserIntroModal / icons.tsx

icons.tsx in GiveWP – Donation Plugin and Fundraising Platform 4.17.0, at src/Campaigns/resources/admin/components/ExistingUserIntroModal/icons.tsx

26 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 export function DismissIcon() {
2 return (
3 <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
4 <rect width="24" height="24" rx="12" fill="#1F2937" />
5 <path
6 d="M17 7 7 17M7 7l10 10"
7 stroke="#fff"
8 stroke-width="2"
9 stroke-linecap="round"
10 stroke-linejoin="round"
11 />
12 </svg>
13 );
14 }
15
16 export function StarIcon() {
17 return (
18 <svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg">
19 <path
20 d="M3.209 1.95a.583.583 0 1 0-1.167 0v.876h-.875a.583.583 0 1 0 0 1.166h.875v.875a.583.583 0 0 0 1.167 0v-.875h.875a.583.583 0 1 0 0-1.166h-.875V1.95zM3.209 10.7a.583.583 0 0 0-1.167 0v.876h-.875a.583.583 0 0 0 0 1.166h.875v.875a.583.583 0 1 0 1.167 0v-.875h.875a.583.583 0 0 0 0-1.167h-.875v-.874zM8.128 2.324a.583.583 0 0 0-1.088 0l-1.012 2.63c-.175.456-.23.588-.306.693-.075.107-.168.2-.274.275-.106.075-.238.13-.693.306l-2.63 1.011a.583.583 0 0 0 0 1.09l2.63 1.01c.455.176.587.231.693.307.106.075.199.168.274.274.076.106.13.238.306.693l1.012 2.63a.583.583 0 0 0 1.088 0l1.012-2.63c.175-.455.23-.587.306-.693.075-.106.168-.199.274-.274.106-.076.238-.13.693-.306l2.63-1.012a.583.583 0 0 0 0-1.089l-2.63-1.011c-.455-.175-.587-.23-.693-.306a1.167 1.167 0 0 1-.274-.275c-.076-.105-.13-.237-.306-.692l-1.012-2.63z"
21 fill="#F2FFF9"
22 />
23 </svg>
24 );
25 }
26