import { Text } from "onyxia-ui/Text"; import { memo } from "react"; import type { ReactNode } from "react"; import { tss } from "../tss"; import { breakpointsValues } from "../theme"; export type GlHeroTextProps = { className?: string; children: NonNullable; }; export const GlHeroText = memo((props: GlHeroTextProps) => { const { children, className } = props; const { classes, cx } = useStyles(); return ( {children} ); }); const useStyles = tss.withName({ GlHeroText }).create(({ theme }) => ({ "root": { "fontWeight": 700, ...(() => { const value = (theme.typography.rootFontSizePx / 16) * (() => { if (theme.windowInnerWidth >= breakpointsValues.xl) { return 86; } if (theme.windowInnerWidth >= 600) { return 52; } return 36; })(); return { "fontSize": value, "lineHeight": `${value}px`, }; })(), }, }));