PluginProbe
Extendify / 0.10.0
Extendify v0.10.0
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
extendify / src / Onboarding / svg / Ticket.jsx

Ticket.jsx in Extendify 0.10.0, at src/Onboarding/svg/Ticket.jsx

27 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { memo } from '@wordpress/element'
2
3 const Ticket = (props) => {
4 const { className, ...otherProps } = props
5
6 return (
7 <svg
8 className={className}
9 viewBox="0 0 24 24"
10 fill="none"
11 xmlns="http://www.w3.org/2000/svg"
12 {...otherProps}>
13 <path
14 d="M22 10V6C22 4.9 21.11 4 20 4H4C2.9 4 2 4.9 2 6V10C3.1 10 4 10.9 4 12C4 13.1 3.1 14 2 14V18C2 19.1 2.9 20 4 20H20C21.11 20 22 19.1 22 18V14C20.89 14 20 13.1 20 12C20 10.9 20.89 10 22 10ZM20 8.54C18.81 9.23 18 10.52 18 12C18 13.48 18.81 14.77 20 15.46V18H4V15.46C5.19 14.77 6 13.48 6 12C6 10.52 5.19 9.23 4 8.54V6H20V8.54Z"
15 fill="currentColor"
16 />
17 <path
18 opacity="0.3"
19 d="M18 12C18 13.48 18.81 14.77 20 15.46V18H4V15.46C5.19 14.77 6 13.48 6 12C6 10.52 5.19 9.23 4 8.54V6H20V8.54C18.81 9.23 18 10.52 18 12Z"
20 fill="currentColor"
21 />
22 </svg>
23 )
24 }
25
26 export default memo(Ticket)
27