blob: cbc2e5786004e4e8d93e9551e372e9974c0992e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
import Icon from "@/components/Icon";
import { auraToHex } from "@/logic/utils";
import { isValidPatp } from "urbit-ob";
import { sigil } from "urbit-sigils";
import { reactRenderer } from "urbit-sigils";
interface SigilProps {
patp: string;
size: number;
bg?: string;
fg?: string;
}
const Sigil = (props: SigilProps) => {
const bg = props.bg ? auraToHex(props.bg) : "var(--color-background)";
const fg = props.fg ? auraToHex(props.fg) : "var(--color-primary)";
if (props.patp.length > 28)
return (
<Icon
name="comet"
size={props.size}
className="comet-icon"
/>
);
else if (props.patp.length > 15)
// moons
return (
<>
{sigil({
patp: props.patp.substring(props.patp.length - 13),
renderer: reactRenderer,
size: props.size,
colors: ["grey", "white"],
})}
</>
);
else
return (
<>
{sigil({
patp: props.patp,
renderer: reactRenderer,
size: props.size,
colors: [bg, fg],
})}
</>
);
};
export default Sigil;
|