PHP Classes

File: src/components/badge/index.tsx

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   Maniruzzaman WordPress Frontend Editor   src/components/badge/index.tsx   Download  
File: src/components/badge/index.tsx
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Maniruzzaman WordPress Frontend Editor
WordPress plugin for visual front-end development
Author: By
Last change:
Date: 8 months ago
Size: 484 bytes
 

Contents

Class file image Download
/** * Internal dependencies. */ import { IBadge } from "../../interfaces"; export default function Badge({ status }: IBadge) { const bgColors = { 'active': '#2ea043', 'retired': 'red', 'unknown': '#ccc', }; return ( <span style={{ background: bgColors?.[status], color: '#fff', padding: '2px 6px', textTransform: 'capitalize', opacity: 0.8 }}>{status}</span> ) }