-
Matiss Janis Aboltins authored
This is direct copy & paste with no changes. Just moving things a bit to reduce the size of the massive common.tsx file
Matiss Janis Aboltins authoredThis is direct copy & paste with no changes. Just moving things a bit to reduce the size of the massive common.tsx file
TextOneLine.tsx 480 B
import { type ComponentProps } from 'react';
import Text from './Text';
type TextOneLineProps = ComponentProps<typeof Text>;
export default function TextOneLine({ children, ...props }: TextOneLineProps) {
return (
<Text
{...props}
style={[
props.style,
{
overflow: 'hidden',
textOverflow: 'ellipsis',
whiteSpace: 'nowrap',
display: 'block',
},
]}
>
{children}
</Text>
);
}