Files
rdap/src/components/EmDash.tsx
Xevion 2c67f49e2f refactor: introduce EmDash component and improve table semantics
Created a reusable EmDash component to standardize placeholder rendering
across tables. Updated DynamicDate to use semantic <time> element instead
of Button wrapper. Improved table alignment with proper left/center/right
positioning in LinksSection and NameserversSection. Enhanced typography in
RemarksSection with medium font weight for headings.
2025-10-23 15:14:57 -05:00

22 lines
372 B
TypeScript

import type { FunctionComponent } from "react";
import { Text } from "@radix-ui/themes";
/**
* A reusable em dash component for displaying placeholder text in tables.
*/
const EmDash: FunctionComponent = () => {
return (
<Text
size="2"
style={{
color: "var(--gray-a8)",
userSelect: "none",
}}
>
&mdash;
</Text>
);
};
export default EmDash;