| 1 |
import { memo } from '@wordpress/element'; |
| 2 |
import { __ } from '@wordpress/i18n'; |
| 3 |
|
| 4 |
const School = (props) => { |
| 5 |
const { className, ...otherProps } = props; |
| 6 |
|
| 7 |
return ( |
| 8 |
<svg |
| 9 |
className={className} |
| 10 |
viewBox="0 0 24 24" |
| 11 |
fill="currentColor" |
| 12 |
xmlns="http://www.w3.org/2000/svg" |
| 13 |
{...otherProps} |
| 14 |
> |
| 15 |
<title>{__('School', 'extendify-local')}</title> |
| 16 |
<path d="M0 0h24v24H0V0z" fill="none" /> |
| 17 |
<path |
| 18 |
d="M7 12.27v3.72l5 2.73 5-2.73v-3.72L12 15zM5.18 9L12 12.72 18.82 9 12 5.28z" |
| 19 |
opacity=".3" |
| 20 |
/> |
| 21 |
<path d="M12 3L1 9l4 2.18v6L12 21l7-3.82v-6l2-1.09V17h2V9L12 3zm5 12.99l-5 2.73-5-2.73v-3.72L12 15l5-2.73v3.72zm-5-3.27L5.18 9 12 5.28 18.82 9 12 12.72z" /> |
| 22 |
</svg> |
| 23 |
); |
| 24 |
}; |
| 25 |
|
| 26 |
export default memo(School); |
| 27 |
|