mirror of
https://github.com/cupcakearmy/nicco.io.git
synced 2025-03-14 07:27:33 +00:00
34 lines
494 B
Plaintext
34 lines
494 B
Plaintext
|
---
|
||
|
export type Props = {
|
||
|
name: string
|
||
|
href: string
|
||
|
count: number
|
||
|
}
|
||
|
|
||
|
const { name, href, count } = Astro.props
|
||
|
---
|
||
|
|
||
|
<a {href}>
|
||
|
<div>
|
||
|
{name}
|
||
|
<i>{count}</i>
|
||
|
</div>
|
||
|
</a>
|
||
|
|
||
|
<style>
|
||
|
div {
|
||
|
display: inline-block;
|
||
|
margin: 0.25rem;
|
||
|
padding: 0 0.5rem;
|
||
|
background-color: var(--clr-primary);
|
||
|
width: max-content;
|
||
|
}
|
||
|
|
||
|
i {
|
||
|
font-family: 'Courier New', Courier, monospace;
|
||
|
font-size: 0.85em;
|
||
|
font-weight: bold;
|
||
|
color: var(--clr-secondary);
|
||
|
}
|
||
|
</style>
|