use assetSrc

pull/1/head
Philipp Rothmann 2022-10-26 15:15:14 +02:00
parent 28dfe95ca6
commit 259d166d00
1 changed files with 2 additions and 4 deletions

View File

@ -2,12 +2,10 @@ import React from 'react';
import { Link } from 'react-router-dom';
export const DashboardCardLIT: React.FC<any> = ({ app }: { app: any }) => {
const url = `/${app.slug}`;
return (
<>
<Link
to={url}
to={`/${app.slug}`}
// className="mx-1 inline-flex items-center px-2.5 py-1.5 border border-transparent shadow-sm text-sm font-medium rounded-md text-white bg-primary-600 hover:bg-primary-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500"
>
<div
@ -18,7 +16,7 @@ export const DashboardCardLIT: React.FC<any> = ({ app }: { app: any }) => {
<div className="mr-4 flex items-center">
<img
className="h-16 w-16 rounded-md overflow-hidden mr-4 flex-shrink-0"
src={`/assets/${app.slug}.svg`}
src={app.assetSrc}
alt={app.name}
/>