Files for my website bwc9876.dev
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add local icon option for IconLink

Ben C a8a3f033 31020dac

+5 -1
+5 -1
src/components/IconLink.astro
··· 22 22 target={isExternal ? "_blank" : null} 23 23 {...rest} 24 24 > 25 - <Icon width="1.2em" height="1.2em" name={`${overridePack ?? "bi"}:${icon}`} /> 25 + <Icon 26 + width="1.2em" 27 + height="1.2em" 28 + name={overridePack === "local" ? icon : `${overridePack ?? "bi"}:${icon}`} 29 + /> 26 30 {placement === "inside" && label} 27 31 </a>