corner-mark.tsx 432 B

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