gab-social/app/javascript/gabsocial/assets/apps_icon.js

32 lines
882 B
JavaScript
Raw Normal View History

2020-02-17 17:50:29 +00:00
const AppsIcon = ({
className = '',
2020-04-23 07:13:29 +01:00
size = '16px',
2020-02-17 17:50:29 +00:00
title = 'Apps',
}) => (
<svg
className={className}
version='1.1'
xmlns='http://www.w3.org/2000/svg'
x='0px'
y='0px'
2020-04-23 07:13:29 +01:00
width={size}
height={size}
viewBox='0 0 80 80'
2020-02-17 17:50:29 +00:00
xmlSpace='preserve'
aria-label={title}
>
2020-03-14 17:31:29 +00:00
<g>
<rect x='0' y='0' width='24' height='24' rx='4' />
<rect x='0' y='28' width='24' height='24' rx='4' />
<rect x='0' y='56' width='24' height='24' rx='4' />
<rect x='28' y='0' width='24' height='24' rx='4' />
<rect x='28' y='28' width='24' height='24' rx='4' />
<rect x='28' y='56' width='24' height='24' rx='4' />
<rect x='56' y='0' width='24' height='24' rx='4' />
<rect x='56' y='28' width='24' height='24' rx='4' />
<rect x='56' y='56' width='24' height='24' rx='4' />
</g>
</svg>
2020-02-17 17:50:29 +00:00
)
export default AppsIcon