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 / CampaignDetailsPage / Components / Notices / DefaultFormNotice.tsx

DefaultFormNotice.tsx in GiveWP – Donation Plugin and Fundraising Platform 4.17.0, at src/Campaigns/resources/admin/components/CampaignDetailsPage/Components/Notices/DefaultFormNotice.tsx

21 lines 739 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import {__} from '@wordpress/i18n';
2 import cx from 'classnames';
3 import {CloseIcon} from "@givewp/campaigns/admin/components/Icons";
4
5 import styles from './Notices.module.scss'
6
7 export default ({handleClick}) => (
8 <div className={cx(styles['tooltip'], styles['defaultForm'])}>
9 <div className={styles['close']} onClick={handleClick}>
10 <CloseIcon />
11 </div>
12 <h3>
13 {__('Default campaign form', 'give')}
14 </h3>
15 <div className={styles['content']}>
16 {__('The default form will always appear at the top of this list. Your campaign page and blocks will collect donations through this form by default. You can change it at any time.', 'give')}
17 </div>
18 </div>
19 )
20
21