mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-10 07:25:35 +00:00
10 lines
179 B
TypeScript
10 lines
179 B
TypeScript
import styled from '@emotion/styled';
|
|
|
|
const TextEllipsis = styled.p({
|
|
textOverflow: 'ellipsis',
|
|
whiteSpace: 'nowrap',
|
|
overflow: 'hidden',
|
|
});
|
|
|
|
export default TextEllipsis;
|