gab-social/app/javascript/gabsocial/components/icon/svgs/trends_icon.js

32 lines
732 B
JavaScript

const TrendsIcon = ({
className = '',
width = '32px',
height = '32px',
viewBox = '0 0 80 80',
title = 'Trends',
}) => (
<svg
className={className}
version='1.1'
xmlns='http://www.w3.org/2000/svg'
x='0px'
y='0px'
width={width}
height={height}
viewBox={viewBox}
xmlSpace='preserve'
aria-label={title}
>
<g>
<rect x="0" y="0" width="24" height="56" rx="4" />
<rect x="0" y="60" width="24" height="20" rx="4" />
<rect x="28" y="44" width="24" height="36" rx="4" />
<rect x="28" y="16" width="24" height="24" rx="4" />
<rect x="56" y="64" width="24" height="16" rx="4" />
<rect x="56" y="30" width="24" height="30" rx="4" />
</g>
</svg>
)
export default TrendsIcon