mirror of
https://github.com/docmost/docmost.git
synced 2025-11-12 18:12:36 +10:00
* wip * Add more providers * icons * unify embed providers (Youtube) * fix case * YT music * remove redundant code
20 lines
760 B
TypeScript
20 lines
760 B
TypeScript
import { rem } from '@mantine/core';
|
|
|
|
interface Props {
|
|
size?: number | string;
|
|
}
|
|
|
|
export function LoomIcon({ size }: Props) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
viewBox="0 0 24 24"
|
|
fill="#625DF5"
|
|
style={{ width: rem(size), height: rem(size) }}
|
|
>
|
|
<path
|
|
d="M24 10.665h-7.018l6.078-3.509-1.335-2.312-6.078 3.509 3.508-6.077L16.843.94l-3.508 6.077V0h-2.67v7.018L7.156.94 4.844 2.275l3.509 6.077-6.078-3.508L.94 7.156l6.078 3.509H0v2.67h7.017L.94 16.844l1.335 2.313 6.077-3.508-3.509 6.077 2.312 1.335 3.509-6.078V24h2.67v-7.017l3.508 6.077 2.312-1.335-3.509-6.078 6.078 3.509 1.335-2.313-6.077-3.508h7.017v-2.67H24zm-12 4.966a3.645 3.645 0 1 1 0-7.29 3.645 3.645 0 0 1 0 7.29z" />
|
|
</svg>
|
|
);
|
|
}
|