diff --git a/src/components/Backlink.astro b/src/components/Backlink.astro new file mode 100644 index 0000000..5addcd1 --- /dev/null +++ b/src/components/Backlink.astro @@ -0,0 +1,26 @@ +--- +import { Sprite } from 'astro-icon'; + +export interface Props { + backLink?: string; +} + +const { backLink } = Astro.props; +--- + +{ + backLink && ( + + + + ) +}