2020-04-02 04:17:21 +01:00
|
|
|
const BlockQuoteIcon = ({
|
|
|
|
className = '',
|
2020-04-23 07:13:29 +01:00
|
|
|
size = '16px',
|
2020-04-02 04:17:21 +01:00
|
|
|
title = 'Block Quote',
|
|
|
|
}) => (
|
|
|
|
<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>
|
2020-05-14 21:45:39 +01:00
|
|
|
<path d='M 0 18.29 L 6.86 18.29 L 2.29 27.43 L 9.14 27.43 L 13.71 18.29 L 13.71 4.57 L 0 4.57 Z M 0 18.29' />
|
|
|
|
<path d='M 18.29 4.57 L 18.29 18.29 L 25.14 18.29 L 20.57 27.43 L 27.43 27.43 L 32 18.29 L 32 4.57 Z M 18.29 4.57' />
|
2020-04-02 04:17:21 +01:00
|
|
|
</g>
|
|
|
|
</svg>
|
|
|
|
)
|
|
|
|
|
|
|
|
export default BlockQuoteIcon
|