import React from 'react' type EllipsisProps = { /** Optional prop to add a test id to the Ellipsis for QA testing */ qaTestId?: string } const Ellipsis = ({ qaTestId = 'ellipsis', }: EllipsisProps): React.JSX.Element => { return ( . {/* Tailwind does not provide animation-delay. 100ms delay for staggered effect */} . {/* Tailwind does not provide animation-delay. 200ms delay for staggered effect */} . ) } export default Ellipsis