mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-01-09 11:11:59 +00:00
Add types
This commit is contained in:
parent
9cc4658f3d
commit
05ecb38709
@ -4,7 +4,12 @@ import IconText from '../../components/General/IconText'
|
||||
import Icon from '../../components/General/Icon'
|
||||
import DashboardCardWrapper from '../Dashboard/DashboardCardWrapper'
|
||||
|
||||
const LogsSumCard = () => {
|
||||
type LogsSumCardProps = {
|
||||
type: string
|
||||
count: number
|
||||
countActive?: number
|
||||
countInactive?: number
|
||||
}
|
||||
const LogsSumCard = ({ type, count, countActive, countInactive }: LogsSumCardProps) => {
|
||||
return (
|
||||
<DashboardCardWrapper>
|
||||
|
Loading…
x
Reference in New Issue
Block a user