trx-cli 0.1.11

A Modern Cross-Platform Package Manager TUI
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { MX } from "./matrix-tokens";

export function Label({ children }: { children: React.ReactNode }) {
  return (
    <p style={{
      color: MX.emeraldText,
      fontFamily: "var(--font-geist-mono)",
      fontSize: "11px",
      letterSpacing: "0.1em",
      marginBottom: "12px",
      textTransform: "uppercase",
      fontWeight: "500",
    }}>
      <span style={{ opacity: 0.45 }}>// </span>{children}
    </p>
  );
}