mirror of
https://github.com/owncast/owncast.git
synced 2025-01-03 23:27:37 +03:00
16 lines
526 B
JavaScript
16 lines
526 B
JavaScript
|
import { h } from '/js/web_modules/preact.js';
|
||
|
import htm from '/js/web_modules/htm.js';
|
||
|
const html = htm.bind(h);
|
||
|
|
||
|
export const ChatIcon = ({ className = 'w-6 h-6' }) => {
|
||
|
return html`
|
||
|
<svg
|
||
|
className="${className}"
|
||
|
fill="currentColor"
|
||
|
viewBox="0 0 20 20"
|
||
|
xmlns="http://www.w3.org/2000/svg">
|
||
|
<path fill-rule="evenodd" d="M18 5v8a2 2 0 01-2 2h-5l-5 4v-4H4a2 2 0 01-2-2V5a2 2 0 012-2h12a2 2 0 012 2zM7 8H5v2h2V8zm2 0h2v2H9V8zm6 0h-2v2h2V8z" clip-rule="evenodd"></path>
|
||
|
</svg>
|
||
|
`;
|
||
|
};
|