Skip to content

Commit

Permalink
fix: use twitter-x bootstrap icon for twitter link (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
quentinderoubaix authored Oct 9, 2023
1 parent 318ac78 commit d73d7e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions demo/src/routes/+layout.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import Svg from '$lib/layout/Svg.svelte';
import github from 'bootstrap-icons/icons/github.svg?raw';
import twitter from 'bootstrap-icons/icons/twitter.svg?raw';
import twitter from 'bootstrap-icons/icons/twitter-x.svg?raw';
import coneStriped from 'bootstrap-icons/icons/cone-striped.svg?raw';
import 'bootstrap/dist/css/bootstrap.css';
import {/*canonicalURL$,*/ pathToRoot$} from '$lib/stores';
Expand Down Expand Up @@ -48,7 +48,7 @@
<a class="nav-link text-white ms-3" href="https://github.com/AmadeusITGroup/AgnosUI" aria-label="link to GitHub repository" target="_blank">
<Svg className="icon-24 align-middle" svg={github} />
</a>
<a class="nav-link text-white ms-3" href="https://twitter.com/AgnosUI" aria-label="link to twitter account" target="_blank">
<a class="nav-link text-white ms-3" href="https://twitter.com/AgnosUI" aria-label="link to twitter / x account" target="_blank">
<Svg className="icon-24 align-middle" svg={twitter} />
</a>
<span class="ms-3 text-white">v{import.meta.env.AGNOSUI_VERSION}</span>
Expand Down

0 comments on commit d73d7e3

Please sign in to comment.