| 1 |
import { memo } from '@wordpress/element'; |
| 2 |
import { __ } from '@wordpress/i18n'; |
| 3 |
|
| 4 |
const Radio = (props) => { |
| 5 |
const { className, ...otherProps } = props; |
| 6 |
|
| 7 |
return ( |
| 8 |
<svg |
| 9 |
className={className} |
| 10 |
viewBox="-4 -4 22 22" |
| 11 |
fill="none" |
| 12 |
xmlns="http://www.w3.org/2000/svg" |
| 13 |
{...otherProps} |
| 14 |
> |
| 15 |
<title>{__('Radio', 'extendify-local')}</title> |
| 16 |
<path |
| 17 |
stroke="currentColor" |
| 18 |
d="M6.5 0.5h0s6 0 6 6v0s0 6 -6 6h0s-6 0 -6 -6v0s0 -6 6 -6" |
| 19 |
/> |
| 20 |
</svg> |
| 21 |
); |
| 22 |
}; |
| 23 |
|
| 24 |
export default memo(Radio); |
| 25 |
|