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 right-0 top-0 flex pl-[13px] '>
  5. <LeftCorner className="text-background-section" />
  6. <div className="system-2xs-medium-uppercase h-5 rounded-tr-xl bg-background-section pr-2 leading-5 text-text-tertiary">{text}</div>
  7. </div>
  8. )
  9. }
  10. export default CornerMark