Buckets:
| // @ts-nocheck | |
| import React from "react" | |
| import { Font, Text as JEText, type TextProps } from "@jsx-email/all" | |
| import { baseText } from "./styles" | |
| export function Text(props: TextProps) { | |
| return <JEText {...props} style={{ ...baseText, ...props.style }} /> | |
| } | |
| export function Title({ children }: TitleProps) { | |
| return React.createElement("title", null, children) | |
| } | |
| export function A({ children, ...props }: AProps) { | |
| return React.createElement("a", props, children) | |
| } | |
| export function Span({ children, ...props }: SpanProps) { | |
| return React.createElement("span", props, children) | |
| } | |
| export function Wbr({ children, ...props }: WbrProps) { | |
| return React.createElement("wbr", props, children) | |
| } | |
| export function Fonts({ assetsUrl }: { assetsUrl: string }) { | |
| return ( | |
| <> | |
| <Font | |
| fontFamily="JetBrains Mono" | |
| fallbackFontFamily="monospace" | |
| webFont={{ | |
| url: `${assetsUrl}/JetBrainsMono-Regular.woff2`, | |
| format: "woff2", | |
| }} | |
| fontWeight="400" | |
| fontStyle="normal" | |
| /> | |
| <Font | |
| fontFamily="JetBrains Mono" | |
| fallbackFontFamily="monospace" | |
| webFont={{ | |
| url: `${assetsUrl}/JetBrainsMono-Medium.woff2`, | |
| format: "woff2", | |
| }} | |
| fontWeight="500" | |
| fontStyle="normal" | |
| /> | |
| <Font | |
| fontFamily="Rubik" | |
| fallbackFontFamily={["Helvetica", "Arial", "sans-serif"]} | |
| webFont={{ | |
| url: `${assetsUrl}/rubik-latin.woff2`, | |
| format: "woff2", | |
| }} | |
| fontWeight="400 500 600 700" | |
| fontStyle="normal" | |
| /> | |
| </> | |
| ) | |
| } | |
| export function SplitString({ text, split }: { text: string; split: number }) { | |
| const segments: JSX.Element[] = [] | |
| for (let i = 0; i < text.length; i += split) { | |
| segments.push(<>{text.slice(i, i + split)}</>) | |
| if (i + split < text.length) { | |
| segments.push(<Wbr key={`${i}wbr`} />) | |
| } | |
| } | |
| return <>{segments}</> | |
| } | |
Xet Storage Details
- Size:
- 1.94 kB
- Xet hash:
- 53c9fb7cec1831ca2842ac1b49d6a07d66e6951357e06ccf585ce3fd3665f5bf
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.