cleanup and fix fading

This commit is contained in:
Bastian Ike
2020-07-17 09:28:02 +02:00
committed by Bastian
parent ed2a4241b8
commit 40e7dd709a
13 changed files with 538 additions and 1295 deletions

View File

@@ -1,7 +1,9 @@
import React from 'react';
import './flag.scss';
import {FlagType} from "../../model";
interface ItemFlag {
flag: 'default' | 'new' | 'changed';
flag: FlagType;
}
export default function Flag({ item, short = false }: { item: ItemFlag; short?: boolean }) {