Files
at-mintel/packages/ui/src/components/universal/Text.tsx
Marc Mintel 599ca63f06
Some checks failed
Monorepo Pipeline / ⚡ Prioritize Release (push) Successful in 2s
Monorepo Pipeline / 🧪 Test (push) Successful in 1m16s
Monorepo Pipeline / 🧹 Lint (push) Failing after 1m27s
Monorepo Pipeline / 🏗️ Build (push) Failing after 1m29s
Monorepo Pipeline / 🚀 Release (push) Has been skipped
Monorepo Pipeline / 🐳 Build Gatekeeper (Product) (push) Has been skipped
Monorepo Pipeline / 🐳 Build Build-Base (push) Has been skipped
Monorepo Pipeline / 🐳 Build Production Runtime (push) Has been skipped
feat: integrate Universal Design System with Web, Print, and Presentation examples
2026-06-08 17:55:57 +02:00

24 lines
666 B
TypeScript

import React from 'react';
import { Text as PdfText } from '@react-pdf/renderer';
import { motion, HTMLMotionProps } from 'framer-motion';
import { useEnvironment } from '../context/EnvironmentContext';
export interface TextProps extends HTMLMotionProps<"span"> {
children?: React.ReactNode;
pdfStyle?: any;
}
export const Text: React.FC<TextProps> = ({ children, className, style, pdfStyle, ...props }) => {
const env = useEnvironment();
if (env === 'print') {
return <PdfText style={pdfStyle || style}>{children}</PdfText>;
}
return (
<motion.span className={className} style={style} {...props}>
{children}
</motion.span>
);
};