mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 11:17:49 +01:00
13 lines
285 B
TypeScript
13 lines
285 B
TypeScript
import * as React from 'react';
|
|
|
|
import IPostStatus from '../../interfaces/IPostStatus';
|
|
|
|
const PostStatusLabel = ({
|
|
id,
|
|
name,
|
|
color,
|
|
}: IPostStatus) => (
|
|
<span className="badge" style={{backgroundColor: color, color: 'white'}}>{name}</span>
|
|
);
|
|
|
|
export default PostStatusLabel; |