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

24 lines
625 B
JavaScript
Raw Normal View History

2020-04-02 04:17:21 +01:00
const ItalicIcon = ({
className = '',
2020-04-23 07:13:29 +01:00
size = '16px',
2020-04-02 04:17:21 +01:00
title = 'Italic',
}) => (
<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 34 32'
2020-04-02 04:17:21 +01:00
xmlSpace='preserve'
aria-label={title}
>
<g>
<path d='M 11.429688 0 L 11.429688 6.855469 L 16.492188 6.855469 L 8.652344 25.144531 L 2.285156 25.144531 L 2.285156 32 L 20.570312 32 L 20.570312 25.144531 L 15.507812 25.144531 L 23.347656 6.855469 L 29.714844 6.855469 L 29.714844 0 Z M 11.429688 0' />
</g>
</svg>
)
export default ItalicIcon