You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

dot.tsx 189B

1234567891011
  1. import React from 'react'
  2. const Dot = () => {
  3. return (
  4. <div className='system-xs-medium text-text-quaternary'>·</div>
  5. )
  6. }
  7. Dot.displayName = 'Dot'
  8. export default React.memo(Dot)