3e42160426
* initialise wg perf docs * fix paths to absolute * fix paths to absolute * vpn coloring guide * improve quic script dwl way * refactor operators menu structure * create probe-details page * wg syntax change * modified time * fix link paths * remove redundancy * fix comments & bump stats
13 lines
462 B
React
13 lines
462 B
React
export const Green = ({ children }) => (
|
|
<span style={{ color: '#22C55E', fontWeight: 600 }}>{children}</span>
|
|
);
|
|
export const Yellow = ({ children }) => (
|
|
<span style={{ color: '#FACC15', fontWeight: 600 }}>{children}</span>
|
|
);
|
|
export const Red = ({ children }) => (
|
|
<span style={{ color: '#EF4444', fontWeight: 600 }}>{children}</span>
|
|
);
|
|
export const Gray = ({ children }) => (
|
|
<span style={{ color: '#6B7280', fontWeight: 600 }}>{children}</span>
|
|
);
|