Personal-Site/src/components/resume/Timeline.astro
Thomas Cole 1d32f3239d
All checks were successful
continuous-integration/drone/push Build is passing
Working on blog and the like
2022-12-20 16:07:20 -05:00

21 lines
487 B
Plaintext

---
export interface Props {
title: string;
subtitle: string;
}
const { title, subtitle } = Astro.props;
---
<div class="flex">
<div>
<span class="w-4 h-4 bg-primary block rounded-full mt-2"></span>
<span class="bg-primary block h-full w-[2px] translate-x-[7px]"></span>
</div>
<div class="px-5">
<p class="font-semibold text-xl">{title}</p>
<span class="text-sm font-light">{subtitle}</span>
<slot></slot>
</div>
</div>