mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 17:30:07 +00:00
10 lines
264 B
JavaScript
10 lines
264 B
JavaScript
import React from 'react';
|
|
|
|
const OpenedSvg = () => (
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24">
|
|
<path d="M0 7.33l2.829-2.83 9.175 9.339 9.167-9.339 2.829 2.83-11.996 12.17z" />
|
|
</svg>
|
|
);
|
|
|
|
export default OpenedSvg;
|