All checks were successful
Build and deploy website / build (push) Successful in 33s
- Hamburger menu on mobile - title is moved into header on mobile - Smaller titles on mobile - Fix wrong import of env in config - Cleaned up unused imports
15 lines
234 B
TypeScript
15 lines
234 B
TypeScript
/**
|
|
* @see https://icon-sets.iconify.design/pajamas/
|
|
*/
|
|
export type Icon =
|
|
| "git"
|
|
| "gitea"
|
|
| "github"
|
|
| "mastodon"
|
|
| "linkedin"
|
|
| "link"
|
|
| "status-health"
|
|
| "hamburger"
|
|
|
|
export type PajamasIcon = `pajamas:${Icon}`
|