File size: 2,780 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
import { Fragment } from 'react';
import ProductIcon from '../index';

function ProductIconExample() {
	const wrapperStyle = {
		display: 'flex',
		flexFlow: 'row wrap',
	};
	const iconStyle = {
		width: 64,
		height: 64,
		margin: '8px 8px 8px 0',
	};

	return (
		<Fragment>
			<h3>Plan Icons</h3>
			<div style={ wrapperStyle }>
				<div style={ iconStyle }>
					<ProductIcon slug="free_plan" />
				</div>
				<div style={ iconStyle }>
					<ProductIcon slug="blogger-bundle" />
				</div>
				<div style={ iconStyle }>
					<ProductIcon slug="personal-bundle" />
				</div>
				<div style={ iconStyle }>
					<ProductIcon slug="value_bundle" />
				</div>
				<div style={ iconStyle }>
					<ProductIcon slug="business-bundle" />
				</div>
				<div style={ iconStyle }>
					<ProductIcon slug="ecommerce-bundle" />
				</div>
			</div>

			<hr />

			<h3>Jetpack Plan Icons</h3>
			<div style={ wrapperStyle }>
				<div style={ iconStyle }>
					<ProductIcon slug="jetpack_free" />
				</div>
				<div style={ iconStyle }>
					<ProductIcon slug="jetpack_personal" />
				</div>
				<div style={ iconStyle }>
					<ProductIcon slug="jetpack_premium" />
				</div>
				<div style={ iconStyle }>
					<ProductIcon slug="jetpack_business" />
				</div>
			</div>

			<hr />

			<h3>Jetpack Products</h3>
			<div style={ wrapperStyle }>
				<div style={ iconStyle }>
					<ProductIcon slug="jetpack_backup_daily" />
				</div>
				<div style={ iconStyle }>
					<ProductIcon slug="jetpack_backup_realtime" />
				</div>
				<div style={ iconStyle }>
					<ProductIcon slug="jetpack_anti_spam" />
				</div>
			</div>

			<hr />

			<h3>Jetpack Bundle Icons v2</h3>
			<div style={ wrapperStyle }>
				<div style={ iconStyle }>
					<ProductIcon slug="jetpack_complete_v2" />
				</div>
				<div style={ iconStyle }>
					<ProductIcon slug="jetpack_security_v2" />
				</div>
			</div>

			<hr />

			<h3>Jetpack Individual Product Icons v2</h3>
			<div style={ wrapperStyle }>
				<div style={ iconStyle }>
					<ProductIcon slug="jetpack_backup_v2" />
				</div>
				<div style={ iconStyle }>
					<ProductIcon slug="jetpack_scan_v2" />
				</div>
				<div style={ iconStyle }>
					<ProductIcon slug="jetpack_anti_spam_v2" />
				</div>
				<div style={ iconStyle }>
					<ProductIcon slug="jetpack_search_v2" />
				</div>
				<div style={ iconStyle }>
					<ProductIcon slug="jetpack_boost" />
				</div>
				<div style={ iconStyle }>
					<ProductIcon slug="jetpack_videopress" />
				</div>
				<div style={ iconStyle }>
					<ProductIcon slug="jetpack_social" />
				</div>
				<div style={ iconStyle }>
					<ProductIcon slug="jetpack_crm" />
				</div>
			</div>
		</Fragment>
	);
}

ProductIconExample.displayName = 'ProductIcon';

export default ProductIconExample;