1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-24 17:51:14 +02:00
unleash.unleash/frontend/src/component/common/FeatureStatusChip/FeatureStatusChip.tsx
NicolaeUnleash 23af7a3474
refactor: light theme colors (#3252)
## About the changes
Refactoring the colors for the light theme to be much easier to continue
with dark mode

This is the first step to finish dark mode

https://linear.app/unleash/project/[low][s][alpha]-dark-mode-in-unleash-admin-ui-31b407d13c4b/1

This PR uses `main-theme` as a placeholder for `dark-theme` for now due
to the new changes. Still need to set the correct values here.

---------

Co-authored-by: Nuno Góis <github@nunogois.com>
2023-03-06 12:58:36 +02:00

29 lines
646 B
TypeScript

import { Badge } from 'component/common/Badge/Badge';
interface IStatusChip {
stale: boolean;
showActive?: boolean;
}
export const FeatureStatusChip = ({
stale,
showActive = true,
}: IStatusChip) => {
if (!stale && !showActive) {
return null;
}
const title = stale
? 'Feature toggle is deprecated.'
: 'Feature toggle is active.';
const value = stale ? 'Stale' : 'Active';
return (
<div data-loading style={{ marginLeft: '8px' }}>
<Badge color={stale ? 'neutral' : 'secondary'} title={title}>
{value}
</Badge>
</div>
);
};