feat: improve links and add matrix and FA logos
This commit is contained in:
@@ -3,10 +3,15 @@ import type { SvgComponent } from "astro/types";
|
||||
|
||||
interface Props {
|
||||
SvgComponent: SvgComponent;
|
||||
svgSize?: number;
|
||||
size?: number;
|
||||
}
|
||||
|
||||
const { SvgComponent, svgSize = 24 } = Astro.props;
|
||||
const { size = 24, SvgComponent } = Astro.props;
|
||||
---
|
||||
|
||||
<SvgComponent height={svgSize} width={svgSize} role="presentation" />
|
||||
<SvgComponent
|
||||
height={size}
|
||||
width={size}
|
||||
fill="currentColor"
|
||||
role="presentation"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user