mirror of
https://github.com/docmost/docmost.git
synced 2025-11-12 14:52:39 +10:00
* wip * Add more providers * icons * unify embed providers (Youtube) * fix case * YT music * remove redundant code
19 lines
473 B
TypeScript
19 lines
473 B
TypeScript
import { rem } from '@mantine/core';
|
|
|
|
interface Props {
|
|
size?: number | string;
|
|
}
|
|
|
|
export function MiroIcon({ size }: Props) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
viewBox="0 0 24 24"
|
|
style={{ width: rem(size), height: rem(size) }}
|
|
>
|
|
<path
|
|
d="M17.392 0H13.9L17 4.808 10.444 0H6.949l3.102 6.3L3.494 0H0l3.05 8.131L0 24h3.494L10.05 6.985 6.949 24h3.494L17 5.494 13.899 24h3.493L24 3.672 17.392 0z" />
|
|
</svg>
|
|
);
|
|
}
|