From e586d7d704d475afe3373a1de6ae20d504f79d6d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Jun 2025 14:25:23 +0000 Subject: Sync from a8e1c0a7402940e0fc5beef669522b315052df1b --- examples/portfolio/src/components/IconPaths.ts | 38 ++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 examples/portfolio/src/components/IconPaths.ts (limited to 'examples/portfolio/src/components/IconPaths.ts') diff --git a/examples/portfolio/src/components/IconPaths.ts b/examples/portfolio/src/components/IconPaths.ts new file mode 100644 index 000000000..f2e959f62 --- /dev/null +++ b/examples/portfolio/src/components/IconPaths.ts @@ -0,0 +1,38 @@ +/** + * Icons adapted from https://phosphoricons.com/ + * + * Want to add more? + * 1. Find the icon you want on Phosphor Icons. + * 2. Click “Copy SVG”. + * 3. Paste the SVG code in your editor. + * 4. Remove the `` wrapper so you only have elements like ``, ``, `` etc. + * 5. Remove any `stroke="#000000"` attributes + * 6. Replace any `fill="#000000"` attributes with `stroke="none"` + * (or add `stroke="none"` on shapes with no `fill` or `stroke` specified). + */ +export const iconPaths = { + 'terminal-window': ``, + trophy: ``, + strategy: ``, + 'paper-plane-tilt': ``, + 'arrow-right': ``, + 'arrow-left': ``, + code: ``, + 'microphone-stage': ``, + 'pencil-line': ``, + 'rocket-launch': ``, + list: ``, + heart: ``, + 'moon-stars': ``, + sun: ``, + 'twitter-logo': ``, + 'codepen-logo': ``, + 'github-logo': ``, + 'twitch-logo': ``, + 'youtube-logo': ``, + 'dribbble-logo': ``, + 'discord-logo': ``, + 'linkedin-logo': ``, + 'instagram-logo': ``, + 'tiktok-logo': ``, +}; -- cgit v1.2.3