PluginProbe
Extendify / 0.11.0
Extendify v0.11.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 / Radio.jsx

Radio.jsx in Extendify 0.11.0, at src/Onboarding/svg/Radio.jsx

22 lines 509 B
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 Radio = (props) => {
4 const { className, ...otherProps } = props
5
6 return (
7 <svg
8 className={className}
9 viewBox="-4 -4 22 22"
10 fill="none"
11 xmlns="http://www.w3.org/2000/svg"
12 {...otherProps}>
13 <path
14 stroke="currentColor"
15 d="M6.5 0.5h0s6 0 6 6v0s0 6 -6 6h0s-6 0 -6 -6v0s0 -6 6 -6"
16 />
17 </svg>
18 )
19 }
20
21 export default memo(Radio)
22