Rev 3531 | | Comparar con el anterior | Ultima modificación | Ver Log |
import React from 'react';
import { Card, CardHeader } from '@shared/components';
export function DetailTag({ title, label, image }) {
return (
<Card>
<CardHeader avatar={image} title={title} subheader={label} />
</Card>
);
}