ieeeucsd-org/src/components/core/Subtitle.astro
2025-01-27 11:25:42 -08:00

11 lines
No EOL
244 B
Text

---
const {title} = Astro.props;
import { LiaDotCircle } from "react-icons/lia";
---
<div class="flex items-center md:text-[2.5vw] text-[4vw] mb-[5%]">
<LiaDotCircle className=" mr-[1vw] pt-[0.5%]"/>
<p>
{title}
</p>
</div>