Blame view

src/components/Div/EllipsisDiv.tsx 249 Bytes
zhongnanhuang authored
1
2
3
4
5
6
7
8
9
10
11
12
const EllipsisDiv = ({ text }: { text: string }) => {
  return (
    <div
      title={text}
      className="overflow-hidden whitespace-no-wrap overflow-ellipsis whitespace-nowrap"
    >
      {text}
    </div>
  );
};

export default EllipsisDiv;