Files
notion-widgets/src/components/WidgetCard.astro
T
2023-06-25 21:18:55 +02:00

13 lines
392 B
Plaintext

---
import {WidgetState} from '../models/WidgetState';
type Props = {
widget: WidgetState
}
const {widget}: Props = Astro.props;
---
<a href={widget.url} class="p-4 rounded-2xl border-[1px] shadow-md active:scale-95 transition-all ease-in-out duration-100">
<h2 class="font-bold text-xl">{widget.data.name}</h2>
{widget.data.description && <p>{widget.data.description}</p>}
</a>