wwf
2025-05-20 938c3e5a587ce950a94964ea509b9e7f8834dfae
1
2
3
4
5
6
7
8
9
10
11
12
import { LeftCorner } from '../../../base/icons/src/vender/plugin'
 
const CornerMark = ({ text }: { text: string }) => {
  return (
    <div className='absolute right-0 top-0 flex pl-[13px] '>
      <LeftCorner className="text-background-section" />
      <div className="system-2xs-medium-uppercase h-5 rounded-tr-xl bg-background-section pr-2 leading-5 text-text-tertiary">{text}</div>
    </div>
  )
}
 
export default CornerMark