Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
275c2cbc69 | ||
|
|
4bd6a273db | ||
|
|
34155d48e7 | ||
|
|
82db590192 | ||
|
|
70be55b78f |
1
.gitignore
vendored
@@ -30,6 +30,7 @@ docs/.vitepress/data/iconNodes
|
|||||||
docs/.vitepress/data/iconMetaData.ts
|
docs/.vitepress/data/iconMetaData.ts
|
||||||
docs/.vitepress/data/releaseMetaData.json
|
docs/.vitepress/data/releaseMetaData.json
|
||||||
docs/.vitepress/data/releaseMetaData
|
docs/.vitepress/data/releaseMetaData
|
||||||
|
docs/.vitepress/data/iconDetails
|
||||||
docs/.vitepress/data/relatedIcons.json
|
docs/.vitepress/data/relatedIcons.json
|
||||||
docs/.vercel
|
docs/.vercel
|
||||||
docs/.nitro
|
docs/.nitro
|
||||||
|
|||||||
11
docs/.vitepress/api/categories/index.get.ts
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
import { eventHandler, setResponseHeader } from 'h3'
|
||||||
|
import iconMetaData from '../../data/iconMetaData'
|
||||||
|
|
||||||
|
export default eventHandler((event) => {
|
||||||
|
setResponseHeader(event, 'Cache-Control', 'public, max-age=86400')
|
||||||
|
setResponseHeader(event, 'Access-Control-Allow-Origin', '*')
|
||||||
|
|
||||||
|
return Object.fromEntries(
|
||||||
|
Object.entries(iconMetaData).map(([name, { categories }]) => [ name, categories ])
|
||||||
|
)
|
||||||
|
})
|
||||||
@@ -8,6 +8,7 @@ export default eventHandler((event) => {
|
|||||||
const withUniqueKeys = query.withUniqueKeys === 'true'
|
const withUniqueKeys = query.withUniqueKeys === 'true'
|
||||||
|
|
||||||
setResponseHeader(event, 'Cache-Control', 'public, max-age=86400')
|
setResponseHeader(event, 'Cache-Control', 'public, max-age=86400')
|
||||||
|
setResponseHeader(event, 'Access-Control-Allow-Origin', '*')
|
||||||
|
|
||||||
if (withUniqueKeys) {
|
if (withUniqueKeys) {
|
||||||
return iconNodes
|
return iconNodes
|
||||||
|
|||||||
@@ -38,6 +38,7 @@ export default eventHandler((event) => {
|
|||||||
|
|
||||||
defaultContentType(event, 'image/svg+xml')
|
defaultContentType(event, 'image/svg+xml')
|
||||||
setResponseHeader(event, 'Cache-Control', 'public,max-age=31536000')
|
setResponseHeader(event, 'Cache-Control', 'public,max-age=31536000')
|
||||||
|
setResponseHeader(event, 'Access-Control-Allow-Origin', '*')
|
||||||
|
|
||||||
return svg
|
return svg
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ import iconMetaData from '../../data/iconMetaData'
|
|||||||
|
|
||||||
export default eventHandler((event) => {
|
export default eventHandler((event) => {
|
||||||
setResponseHeader(event, 'Cache-Control', 'public, max-age=86400')
|
setResponseHeader(event, 'Cache-Control', 'public, max-age=86400')
|
||||||
|
setResponseHeader(event, 'Access-Control-Allow-Origin', '*')
|
||||||
|
|
||||||
return Object.fromEntries(
|
return Object.fromEntries(
|
||||||
Object.entries(iconMetaData).map(([name, { tags }]) => [ name, tags ])
|
Object.entries(iconMetaData).map(([name, { tags }]) => [ name, tags ])
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import { createWriteStream } from 'node:fs'
|
|||||||
import { resolve } from 'node:path'
|
import { resolve } from 'node:path'
|
||||||
import { SitemapStream } from 'sitemap'
|
import { SitemapStream } from 'sitemap'
|
||||||
import sidebar from './sidebar';
|
import sidebar from './sidebar';
|
||||||
|
import fs from 'fs';
|
||||||
|
|
||||||
const links = []
|
const links = []
|
||||||
|
|
||||||
@@ -35,7 +36,7 @@ export default defineConfig({
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
head: [
|
head: [
|
||||||
[ 'script', {
|
[ 'script', {
|
||||||
@@ -130,10 +131,6 @@ export default defineConfig({
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pageData.relativePath === 'index.md') {
|
|
||||||
console.log('Home!');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (pageData.relativePath.startsWith('icons/')) {
|
if (pageData.relativePath.startsWith('icons/')) {
|
||||||
links.push({
|
links.push({
|
||||||
url: pageData.relativePath.replace(/((^|\/)index)?\.md$/, '$2'),
|
url: pageData.relativePath.replace(/((^|\/)index)?\.md$/, '$2'),
|
||||||
|
|||||||
@@ -8,14 +8,6 @@ const DATE_OF_FORK = '2020-06-08T16:39:52+0100';
|
|||||||
|
|
||||||
const directory = path.join(process.cwd(), "../icons");
|
const directory = path.join(process.cwd(), "../icons");
|
||||||
|
|
||||||
export function getAllNames() {
|
|
||||||
const fileNames = fs.readdirSync(directory).filter((file) => path.extname(file) === '.json');
|
|
||||||
|
|
||||||
return fileNames
|
|
||||||
.filter((fileName) => fs.existsSync(directory + '/' + path.basename(fileName, '.json') + '.svg'))
|
|
||||||
.map((fileName) => path.basename(fileName, '.json'));
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface GetDataOptions {
|
export interface GetDataOptions {
|
||||||
withChildKeys?: boolean
|
withChildKeys?: boolean
|
||||||
}
|
}
|
||||||
@@ -49,7 +41,7 @@ export async function getData(name: string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export async function getAllData(): Promise<{ name: string, iconNode: IconNodeWithKeys}[]> {
|
export async function getAllData(): Promise<{ name: string, iconNode: IconNodeWithKeys}[]> {
|
||||||
const names = getAllNames();
|
const names = Object.keys(iconNodes);
|
||||||
|
|
||||||
return Promise.all(names.map((name) => getData(name)));
|
return Promise.all(names.map((name) => getData(name)));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ watch(absoluteStrokeWidth, (enabled) => {
|
|||||||
<ResetButton @click="resetStyle"></ResetButton>
|
<ResetButton @click="resetStyle"></ResetButton>
|
||||||
</h2>
|
</h2>
|
||||||
<p class="copy">
|
<p class="copy">
|
||||||
Lucide has a lot of customization options to match the icons with you UI.
|
Lucide has a lot of customization options to match the icons with your UI.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<div class="customizer">
|
<div class="customizer">
|
||||||
|
|||||||
@@ -1,30 +1,38 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import type { IconEntity } from '../../types'
|
import type { IconEntity } from '../../types'
|
||||||
import { computed, ref, watch } from 'vue'
|
import { computed, ref, watch } from 'vue'
|
||||||
import createLucideIcon from 'lucide-vue-next/src/createLucideIcon';
|
import createLucideIcon from 'lucide-vue-next/src/createLucideIcon';
|
||||||
import IconButton from '../base/IconButton.vue';
|
import IconButton from '../base/IconButton.vue';
|
||||||
import IconContributors from './IconContributors.vue';
|
import IconContributors from './IconContributors.vue';
|
||||||
import IconPreview from './IconPreview.vue';
|
import IconPreview from './IconPreview.vue';
|
||||||
import { x, expand } from '../../../data/iconNodes'
|
import { x, expand } from '../../../data/iconNodes'
|
||||||
import { useRouter } from 'vitepress';
|
import { useRouter } from 'vitepress';
|
||||||
import IconInfo from './IconInfo.vue';
|
import IconInfo from './IconInfo.vue';
|
||||||
import Badge from '../base/Badge.vue';
|
import Badge from '../base/Badge.vue';
|
||||||
|
import { computedAsync } from '@vueuse/core';
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
icon: IconEntity
|
iconName: string
|
||||||
}>()
|
}>()
|
||||||
|
|
||||||
const emit = defineEmits(['close'])
|
const icon = computedAsync<IconEntity | null>(async () => {
|
||||||
const isOpen = computed(() => !!props.icon)
|
if (props.iconName) {
|
||||||
|
return (await import(`../../../data/iconDetails/${props.iconName}.ts`)).default as IconEntity
|
||||||
function onClose() {
|
|
||||||
emit('close')
|
|
||||||
}
|
}
|
||||||
|
return null
|
||||||
|
}, null)
|
||||||
|
|
||||||
const { go } = useRouter()
|
const emit = defineEmits(['close'])
|
||||||
|
const isOpen = computed(() => !!icon.value)
|
||||||
|
|
||||||
const CloseIcon = createLucideIcon('Close', x)
|
function onClose() {
|
||||||
const Expand = createLucideIcon('Expand', expand)
|
emit('close')
|
||||||
|
}
|
||||||
|
|
||||||
|
const { go } = useRouter()
|
||||||
|
|
||||||
|
const CloseIcon = createLucideIcon('Close', x)
|
||||||
|
const Expand = createLucideIcon('Expand', expand)
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
@@ -109,9 +117,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.icon-info {
|
.icon-info {
|
||||||
padding: 0 24px;
|
padding-left: 24px;
|
||||||
flex-basis: 100%;
|
flex-basis: 100%;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon-tags {
|
.icon-tags {
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ const { go } = useRouter()
|
|||||||
const { page } = useData()
|
const { page } = useData()
|
||||||
|
|
||||||
const tags = computed(() => {
|
const tags = computed(() => {
|
||||||
if (!props.icon) return []
|
if (!props.icon || !props?.icon?.tags) return []
|
||||||
return props.icon.tags.join(' • ')
|
return props.icon.tags.join(' • ')
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
@@ -27,9 +27,11 @@ const tags = computed(() => {
|
|||||||
<IconDetailName class="icon-name">
|
<IconDetailName class="icon-name">
|
||||||
{{ icon.name }}
|
{{ icon.name }}
|
||||||
</IconDetailName>
|
</IconDetailName>
|
||||||
<p class="icon-tags">
|
<div class="tags-scroller" v-if="tags.length">
|
||||||
{{ tags }}
|
<p class="icon-tags horizontal-scroller">
|
||||||
</p>
|
{{ tags }}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
<div class="group">
|
<div class="group">
|
||||||
<Badge
|
<Badge
|
||||||
v-for="category in icon.categories"
|
v-for="category in icon.categories"
|
||||||
@@ -72,9 +74,61 @@ const tags = computed(() => {
|
|||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
color: var(--vp-c-text-2);
|
color: var(--vp-c-text-2);
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
margin-top: 0;;
|
|
||||||
margin-bottom: 16px;
|
|
||||||
line-height: 28px;
|
line-height: 28px;
|
||||||
|
white-space: nowrap;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tags-scroller {
|
||||||
|
position: relative;
|
||||||
|
max-width: 100%;
|
||||||
|
width: 100%;
|
||||||
|
height: 28px;
|
||||||
|
padding: 8px 0 16px;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
margin-top: 8px;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
--gradient-background: var(--tags-gradient-background, var(--vp-c-bg-elv))
|
||||||
|
}
|
||||||
|
.horizontal-scroller {
|
||||||
|
overflow-x: scroll;
|
||||||
|
/* Hide Scrollbar */
|
||||||
|
-ms-overflow-style: none;
|
||||||
|
scrollbar-width: none;
|
||||||
|
scrollbar-width: thin; /* can also be normal, or none, to not render scrollbar */
|
||||||
|
scrollbar-color: currentColor transparent; /* foreground background */
|
||||||
|
}
|
||||||
|
.horizontal-scroller::-webkit-scrollbar {
|
||||||
|
width: 0;
|
||||||
|
display: none
|
||||||
|
}
|
||||||
|
|
||||||
|
.horizontal-scroller::-webkit-scrollbar-track {
|
||||||
|
background: transparent
|
||||||
|
}
|
||||||
|
|
||||||
|
.horizontal-scroller::-webkit-scrollbar-thumb {
|
||||||
|
background: transparent;
|
||||||
|
border: none
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.tags-scroller::after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
width: 32px;
|
||||||
|
height: 100%;
|
||||||
|
/* Background Gradient left to right */
|
||||||
|
background: linear-gradient(to right, rgba(255,255,255,0) 0%,var(--gradient-background) 100%);
|
||||||
|
right: 0;
|
||||||
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.buttons {
|
.buttons {
|
||||||
|
|||||||
@@ -6,6 +6,9 @@ import InputSearch from '../base/InputSearch.vue'
|
|||||||
import useSearchInput from '../../composables/useSearchInput'
|
import useSearchInput from '../../composables/useSearchInput'
|
||||||
import StickyBar from './StickyBar.vue'
|
import StickyBar from './StickyBar.vue'
|
||||||
import IconsCategory from './IconsCategory.vue'
|
import IconsCategory from './IconsCategory.vue'
|
||||||
|
import { useFetch } from '@vueuse/core'
|
||||||
|
import useFetchTags from '../../composables/useFetchTags'
|
||||||
|
import useFetchCategories from '../../composables/useFetchCategories'
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
icons: IconEntity[]
|
icons: IconEntity[]
|
||||||
@@ -22,7 +25,26 @@ function setActiveIconName(name: string) {
|
|||||||
activeIconName.value = name
|
activeIconName.value = name
|
||||||
}
|
}
|
||||||
|
|
||||||
const searchResults = useSearch(searchQuery, props.icons, [
|
const { execute: fetchTags, data: tags } = useFetchTags()
|
||||||
|
const { execute: fetchCategories, data: categoriesMap } = useFetchCategories()
|
||||||
|
|
||||||
|
const mappedIcons = computed(() => {
|
||||||
|
if(tags.value == null) {
|
||||||
|
return props.icons
|
||||||
|
}
|
||||||
|
return props.icons.map((icon) => {
|
||||||
|
const iconTags = tags.value[icon.name]
|
||||||
|
const iconCategories = categoriesMap.value?.[icon.name] ?? []
|
||||||
|
|
||||||
|
return {
|
||||||
|
...icon,
|
||||||
|
tags: iconTags,
|
||||||
|
categories: iconCategories,
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
const searchResults = useSearch(searchQuery, mappedIcons, [
|
||||||
{ name: 'name', weight: 2 },
|
{ name: 'name', weight: 2 },
|
||||||
{ name: 'tags', weight: 1 },
|
{ name: 'tags', weight: 1 },
|
||||||
])
|
])
|
||||||
@@ -37,7 +59,6 @@ const categories = computed(() => {
|
|||||||
return iconCategories?.includes(name)
|
return iconCategories?.includes(name)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
const searchedCategoryIcons = isSearching
|
const searchedCategoryIcons = isSearching
|
||||||
? categoryIcons.filter(icon => searchResults.value.some((item) => item?.name === icon?.name))
|
? categoryIcons.filter(icon => searchResults.value.some((item) => item?.name === icon?.name))
|
||||||
: categoryIcons;
|
: categoryIcons;
|
||||||
@@ -51,9 +72,14 @@ const categories = computed(() => {
|
|||||||
.filter(({ icons }) => icons.length)
|
.filter(({ icons }) => icons.length)
|
||||||
})
|
})
|
||||||
|
|
||||||
const activeIcon = computed(() =>
|
function onFocusSearchInput() {
|
||||||
props.icons?.find((icon) => icon.name === activeIconName.value)
|
if (tags.value == null) {
|
||||||
)
|
fetchTags()
|
||||||
|
}
|
||||||
|
if (categoriesMap.value == null) {
|
||||||
|
fetchCategories()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const NoResults = defineAsyncComponent(() =>
|
const NoResults = defineAsyncComponent(() =>
|
||||||
import('./NoResults.vue')
|
import('./NoResults.vue')
|
||||||
@@ -71,6 +97,7 @@ const IconDetailOverlay = defineAsyncComponent(() =>
|
|||||||
v-model="searchQuery"
|
v-model="searchQuery"
|
||||||
class="input-wrapper"
|
class="input-wrapper"
|
||||||
ref="searchInput"
|
ref="searchInput"
|
||||||
|
@focus="onFocusSearchInput"
|
||||||
/>
|
/>
|
||||||
</StickyBar>
|
</StickyBar>
|
||||||
<NoResults
|
<NoResults
|
||||||
@@ -87,7 +114,7 @@ const IconDetailOverlay = defineAsyncComponent(() =>
|
|||||||
/>
|
/>
|
||||||
<IconDetailOverlay
|
<IconDetailOverlay
|
||||||
v-if="activeIconName != null"
|
v-if="activeIconName != null"
|
||||||
:icon="activeIcon"
|
:iconName="activeIconName"
|
||||||
@close="setActiveIconName('')"
|
@close="setActiveIconName('')"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -8,6 +8,8 @@ import useSearch from '../../composables/useSearch'
|
|||||||
import EndOfPage from '../base/EndOfPage.vue'
|
import EndOfPage from '../base/EndOfPage.vue'
|
||||||
import useSearchInput from '../../composables/useSearchInput'
|
import useSearchInput from '../../composables/useSearchInput'
|
||||||
import StickyBar from './StickyBar.vue'
|
import StickyBar from './StickyBar.vue'
|
||||||
|
import useFetchTags from '../../composables/useFetchTags'
|
||||||
|
import useFetchCategories from '../../composables/useFetchCategories'
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
icons: IconEntity[]
|
icons: IconEntity[]
|
||||||
@@ -22,7 +24,7 @@ const isSmallScreen = useMediaQuery('(min-width: 640px)');
|
|||||||
|
|
||||||
const pageSize = computed(() => {
|
const pageSize = computed(() => {
|
||||||
if(isExtraLargeScreen.value) {
|
if(isExtraLargeScreen.value) {
|
||||||
return 16 * 16;
|
return 16 * 20;
|
||||||
}
|
}
|
||||||
if(isLargeScreen.value) {
|
if(isLargeScreen.value) {
|
||||||
return 16 * 12;
|
return 16 * 12;
|
||||||
@@ -38,8 +40,28 @@ const pageSize = computed(() => {
|
|||||||
return 10 * 5;
|
return 10 * 5;
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const { execute: fetchTags, data: tags } = useFetchTags()
|
||||||
|
const { execute: fetchCategories, data: categories } = useFetchCategories()
|
||||||
|
|
||||||
|
const mappedIcons = computed(() => {
|
||||||
|
if(tags.value == null) {
|
||||||
|
return props.icons
|
||||||
|
}
|
||||||
|
|
||||||
|
return props.icons.map((icon) => {
|
||||||
|
const iconTags = tags.value[icon.name]
|
||||||
|
const iconCategories = categories.value?.[icon.name] ?? []
|
||||||
|
|
||||||
|
return {
|
||||||
|
...icon,
|
||||||
|
tags: iconTags,
|
||||||
|
categories: iconCategories,
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
const { searchInput, searchQuery, searchQueryThrottled } = useSearchInput()
|
const { searchInput, searchQuery, searchQueryThrottled } = useSearchInput()
|
||||||
const searchResults = useSearch(searchQueryThrottled, props.icons, [
|
const searchResults = useSearch(searchQueryThrottled, mappedIcons, [
|
||||||
{ name: 'name', weight: 3 },
|
{ name: 'name', weight: 3 },
|
||||||
{ name: 'tags', weight: 2 },
|
{ name: 'tags', weight: 2 },
|
||||||
{ name: 'categories', weight: 1 },
|
{ name: 'categories', weight: 1 },
|
||||||
@@ -58,12 +80,19 @@ function setActiveIconName(name: string) {
|
|||||||
activeIconName.value = name
|
activeIconName.value = name
|
||||||
}
|
}
|
||||||
|
|
||||||
const activeIcon = computed(() => props.icons.find((icon) => icon.name === activeIconName.value))
|
|
||||||
|
|
||||||
watch(searchQueryThrottled, (searchString) => {
|
watch(searchQueryThrottled, (searchString) => {
|
||||||
currentPage.value = 1
|
currentPage.value = 1
|
||||||
})
|
})
|
||||||
|
|
||||||
|
function onFocusSearchInput() {
|
||||||
|
if (tags.value == null) {
|
||||||
|
fetchTags()
|
||||||
|
}
|
||||||
|
if (categories.value == null) {
|
||||||
|
fetchCategories()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const NoResults = defineAsyncComponent(() =>
|
const NoResults = defineAsyncComponent(() =>
|
||||||
import('./NoResults.vue')
|
import('./NoResults.vue')
|
||||||
)
|
)
|
||||||
@@ -81,6 +110,7 @@ const IconDetailOverlay = defineAsyncComponent(() =>
|
|||||||
v-model="searchQuery"
|
v-model="searchQuery"
|
||||||
ref="searchInput"
|
ref="searchInput"
|
||||||
class="input-wrapper"
|
class="input-wrapper"
|
||||||
|
@focus="onFocusSearchInput"
|
||||||
/>
|
/>
|
||||||
</StickyBar>
|
</StickyBar>
|
||||||
<NoResults
|
<NoResults
|
||||||
@@ -97,7 +127,7 @@ const IconDetailOverlay = defineAsyncComponent(() =>
|
|||||||
<EndOfPage @end-of-page="next" class="bottom-page"/>
|
<EndOfPage @end-of-page="next" class="bottom-page"/>
|
||||||
<IconDetailOverlay
|
<IconDetailOverlay
|
||||||
v-if="activeIconName != null"
|
v-if="activeIconName != null"
|
||||||
:icon="activeIcon"
|
:iconName="activeIconName"
|
||||||
@close="setActiveIconName('')"
|
@close="setActiveIconName('')"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -32,8 +32,8 @@ useEventListener(document, 'mousemove', (mouseEvent) => {
|
|||||||
No icons found for '{{ searchQuery }}'
|
No icons found for '{{ searchQuery }}'
|
||||||
</h2>
|
</h2>
|
||||||
<VPButton text="Clear your search and try again" theme="alt" @click="$emit('clear')"/>
|
<VPButton text="Clear your search and try again" theme="alt" @click="$emit('clear')"/>
|
||||||
or
|
<span class="text-divider">or</span>
|
||||||
<VPButton text="Check if someone has already requested this icon"
|
<VPButton text="Search on Github issues"
|
||||||
theme="alt"
|
theme="alt"
|
||||||
:href="`https://github.com/lucide-icons/lucide/issues?q=is%3Aopen+${searchQuery}`"
|
:href="`https://github.com/lucide-icons/lucide/issues?q=is%3Aopen+${searchQuery}`"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
@@ -74,4 +74,10 @@ useEventListener(document, 'mousemove', (mouseEvent) => {
|
|||||||
margin-bottom: 32px;
|
margin-bottom: 32px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.text-divider {
|
||||||
|
margin: 12px 0;
|
||||||
|
font-size: 16px;
|
||||||
|
color: var(--vp-c-neutral);
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { shallowRef, type Ref, watch } from 'vue'
|
import { shallowRef, type Ref, watch, computed } from 'vue'
|
||||||
import { useCssVar, syncRef } from '@vueuse/core'
|
import { useCssVar, syncRef } from '@vueuse/core'
|
||||||
import { useIconStyleContext } from '../../composables/useIconStyle'
|
import { STYLE_DEFAULTS, useIconStyleContext } from '../../composables/useIconStyle'
|
||||||
import RangeSlider from '../base/RangeSlider.vue'
|
import RangeSlider from '../base/RangeSlider.vue'
|
||||||
import InputField from '../base/InputField.vue'
|
import InputField from '../base/InputField.vue'
|
||||||
import ColorPicker from '../base/ColorPicker.vue'
|
import ColorPicker from '../base/ColorPicker.vue'
|
||||||
@@ -19,7 +19,7 @@ const colorCssVar = useCssVar(
|
|||||||
'--customize-color',
|
'--customize-color',
|
||||||
props.rootEl?.value ?? documentRef.value,
|
props.rootEl?.value ?? documentRef.value,
|
||||||
{
|
{
|
||||||
initialValue: 'default'
|
initialValue: `${STYLE_DEFAULTS.color}`
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -27,7 +27,7 @@ const strokeWidthCssVar = useCssVar(
|
|||||||
'--customize-strokeWidth',
|
'--customize-strokeWidth',
|
||||||
props.rootEl?.value ?? documentRef.value,
|
props.rootEl?.value ?? documentRef.value,
|
||||||
{
|
{
|
||||||
initialValue: '2'
|
initialValue: `${STYLE_DEFAULTS.strokeWidth}`
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -35,7 +35,7 @@ const sizeCssVar = useCssVar(
|
|||||||
'--customize-size',
|
'--customize-size',
|
||||||
props.rootEl?.value ?? documentRef.value,
|
props.rootEl?.value ?? documentRef.value,
|
||||||
{
|
{
|
||||||
initialValue: '24'
|
initialValue: `${STYLE_DEFAULTS.size}`
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -44,9 +44,9 @@ syncRef(strokeWidth, strokeWidthCssVar, { direction: 'ltr' })
|
|||||||
syncRef(size, sizeCssVar, { direction: 'ltr' })
|
syncRef(size, sizeCssVar, { direction: 'ltr' })
|
||||||
|
|
||||||
function resetStyle () {
|
function resetStyle () {
|
||||||
color.value = 'currentColor'
|
color.value = STYLE_DEFAULTS.color
|
||||||
strokeWidth.value = 2
|
strokeWidth.value = STYLE_DEFAULTS.strokeWidth
|
||||||
size.value = 24
|
size.value = STYLE_DEFAULTS.size
|
||||||
}
|
}
|
||||||
|
|
||||||
watch(absoluteStrokeWidth, (enabled) => {
|
watch(absoluteStrokeWidth, (enabled) => {
|
||||||
@@ -54,10 +54,18 @@ watch(absoluteStrokeWidth, (enabled) => {
|
|||||||
|
|
||||||
htmlEl.classList.toggle('absolute-stroke-width', enabled)
|
htmlEl.classList.toggle('absolute-stroke-width', enabled)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const customizingActive = computed(() => {
|
||||||
|
return color.value !== STYLE_DEFAULTS.color
|
||||||
|
|| strokeWidth.value !== STYLE_DEFAULTS.strokeWidth
|
||||||
|
|| size.value !== STYLE_DEFAULTS.size
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="customizer-card">
|
<div class="customizer-card" :class="{ customized: customizingActive }">
|
||||||
<div class="card-header">
|
<div class="card-header">
|
||||||
<h2 class="card-title">
|
<h2 class="card-title">
|
||||||
Customizer
|
Customizer
|
||||||
@@ -142,6 +150,12 @@ watch(absoluteStrokeWidth, (enabled) => {
|
|||||||
margin-bottom: 24px;
|
margin-bottom: 24px;
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
transition: border-color .4s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customizer-card.customized {
|
||||||
|
border-color: var(--vp-c-brand);
|
||||||
}
|
}
|
||||||
|
|
||||||
.color-picker {
|
.color-picker {
|
||||||
|
|||||||
12
docs/.vitepress/theme/composables/useFetchCategories.ts
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
import { useFetch } from "@vueuse/core"
|
||||||
|
|
||||||
|
const useFetchCategories = () => useFetch<Record<string, string[]>>(
|
||||||
|
`${import.meta.env.DEV ? 'http://localhost:3000' : ''}/api/categories`,
|
||||||
|
{
|
||||||
|
immediate:
|
||||||
|
typeof window !== 'undefined'
|
||||||
|
&& new URLSearchParams(window.location.search).has('search'),
|
||||||
|
}
|
||||||
|
).json()
|
||||||
|
|
||||||
|
export default useFetchCategories
|
||||||
12
docs/.vitepress/theme/composables/useFetchTags.ts
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
import { useFetch } from "@vueuse/core"
|
||||||
|
|
||||||
|
const useFetchTags = () => useFetch<Record<string, string[]>>(
|
||||||
|
`${import.meta.env.DEV ? 'http://localhost:3000' : ''}/api/tags`,
|
||||||
|
{
|
||||||
|
immediate:
|
||||||
|
typeof window !== 'undefined'
|
||||||
|
&& new URLSearchParams(window.location.search).has('search'),
|
||||||
|
}
|
||||||
|
).json()
|
||||||
|
|
||||||
|
export default useFetchTags
|
||||||
@@ -10,8 +10,16 @@ interface IconSizeContext {
|
|||||||
size: Ref<number>
|
size: Ref<number>
|
||||||
strokeWidth: Ref<number>
|
strokeWidth: Ref<number>
|
||||||
color: Ref<string>
|
color: Ref<string>
|
||||||
|
absoluteStrokeWidth: Ref<boolean>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const STYLE_DEFAULTS = {
|
||||||
|
size: 24,
|
||||||
|
strokeWidth: 2,
|
||||||
|
color: 'currentColor',
|
||||||
|
absoluteStrokeWidth: false,
|
||||||
|
};
|
||||||
|
|
||||||
export const iconStyleContext = {
|
export const iconStyleContext = {
|
||||||
size: ref(24),
|
size: ref(24),
|
||||||
strokeWidth: ref(2),
|
strokeWidth: ref(2),
|
||||||
|
|||||||
@@ -1,20 +1,22 @@
|
|||||||
import Fuse from 'fuse.js';
|
import Fuse from 'fuse.js';
|
||||||
import { shallowRef, computed, Ref } from 'vue';
|
import { shallowRef, computed, Ref } from 'vue';
|
||||||
|
|
||||||
const useSearch = <T>(query: Ref<string>, collection: T[], keys: Fuse.FuseOptionKey<T>[] = []) => {
|
const useSearch = <T>(query: Ref<string>, collection: Ref<T[]>, keys: Fuse.FuseOptionKey<T>[] = []) => {
|
||||||
const index = shallowRef(
|
const index = shallowRef(
|
||||||
new Fuse(collection, {
|
new Fuse(collection.value, {
|
||||||
threshold: 0.2,
|
threshold: 0.2,
|
||||||
keys,
|
keys,
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
|
|
||||||
const results = computed(() => {
|
const results = computed(() => {
|
||||||
|
index.value.setCollection(collection.value);
|
||||||
|
|
||||||
if (query.value) {
|
if (query.value) {
|
||||||
return index.value.search(query.value).map((result) => result.item);
|
return index.value.search(query.value).map((result) => result.item);
|
||||||
}
|
}
|
||||||
|
|
||||||
return collection;
|
return collection.value;
|
||||||
});
|
});
|
||||||
|
|
||||||
return results;
|
return results;
|
||||||
|
|||||||
@@ -11,12 +11,16 @@ const useSearchInput = () => {
|
|||||||
|| ''
|
|| ''
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
const searchQueryThrottled = refThrottled(searchQuery, 200)
|
const searchQueryThrottled = refThrottled(searchQuery, 400)
|
||||||
|
|
||||||
watch(searchQueryThrottled, (searchString) => {
|
watch(searchQueryThrottled, (searchString) => {
|
||||||
const newUrl = new URL(window.location.href);
|
const newUrl = new URL(window.location.href);
|
||||||
|
|
||||||
newUrl.searchParams.set('search', searchString);
|
if(searchString === '') {
|
||||||
|
newUrl.searchParams.delete('search');
|
||||||
|
} else {
|
||||||
|
newUrl.searchParams.set('search', searchString);
|
||||||
|
}
|
||||||
|
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
window.history.replaceState({}, '', newUrl)
|
window.history.replaceState({}, '', newUrl)
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ For more details, see the [documentation](packages/lucide.md).
|
|||||||
|
|
||||||
## React
|
## React
|
||||||
|
|
||||||
Implementation of the lucide icon library for react applications.
|
Implementation of the lucide icon library for React applications.
|
||||||
|
|
||||||
::: code-group
|
::: code-group
|
||||||
|
|
||||||
@@ -47,84 +47,138 @@ npm install lucide-react
|
|||||||
:::
|
:::
|
||||||
|
|
||||||
For more details, see the [documentation](packages/lucide-react.md).
|
For more details, see the [documentation](packages/lucide-react.md).
|
||||||
|
For React Native use the `lucide-react-native` package.
|
||||||
|
|
||||||
## Vue 2
|
## Vue
|
||||||
|
|
||||||
Implementation of the lucide icon library for vue applications.
|
Implementation of the lucide icon library for Vue applications.
|
||||||
|
|
||||||
```bash
|
::: code-group
|
||||||
yarn add lucide-vue
|
|
||||||
|
```sh [pnpm]
|
||||||
|
pnpm install lucide-vue-next
|
||||||
```
|
```
|
||||||
|
|
||||||
or
|
```sh [yarn]
|
||||||
|
|
||||||
```sh
|
|
||||||
npm install lucide-vue
|
|
||||||
```
|
|
||||||
|
|
||||||
For more details, see the [documentation](packages/lucide-vue.md).
|
|
||||||
|
|
||||||
## Vue 3
|
|
||||||
|
|
||||||
Implementation of the lucide icon library for vue applications.
|
|
||||||
|
|
||||||
```bash
|
|
||||||
yarn add lucide-vue-next
|
yarn add lucide-vue-next
|
||||||
```
|
```
|
||||||
|
|
||||||
or
|
```sh [npm]
|
||||||
|
|
||||||
```sh
|
|
||||||
npm install lucide-vue-next
|
npm install lucide-vue-next
|
||||||
```
|
```
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
For more details, see the [documentation](packages/lucide-vue-next.md).
|
For more details, see the [documentation](packages/lucide-vue-next.md).
|
||||||
|
For Vue 2 use the `lucide-vue` package.
|
||||||
|
|
||||||
## Svelte
|
## Svelte
|
||||||
|
|
||||||
Implementation of the lucide icon library for vue applications.
|
Implementation of the lucide icon library for Svelte applications.
|
||||||
|
|
||||||
```bash
|
::: code-group
|
||||||
|
|
||||||
|
```sh [pnpm]
|
||||||
|
pnpm install lucide-svelte
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh [yarn]
|
||||||
yarn add lucide-svelte
|
yarn add lucide-svelte
|
||||||
```
|
```
|
||||||
|
|
||||||
or
|
```sh [npm]
|
||||||
|
|
||||||
```sh
|
|
||||||
npm install lucide-svelte
|
npm install lucide-svelte
|
||||||
```
|
```
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
For more details, see the [documentation](packages/lucide-svelte.md).
|
For more details, see the [documentation](packages/lucide-svelte.md).
|
||||||
|
|
||||||
|
## Solid
|
||||||
|
|
||||||
|
Implementation of the lucide icon library for Solid applications.
|
||||||
|
|
||||||
|
::: code-group
|
||||||
|
|
||||||
|
```sh [pnpm]
|
||||||
|
pnpm install lucide-solid
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh [yarn]
|
||||||
|
yarn add lucide-solid
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh [npm]
|
||||||
|
npm install lucide-solid
|
||||||
|
```
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
|
For more details, see the [documentation](packages/lucide-solid.md).
|
||||||
|
|
||||||
## Angular
|
## Angular
|
||||||
|
|
||||||
```bash
|
Implementation of the lucide icon library for Angular applications.
|
||||||
|
|
||||||
|
::: code-group
|
||||||
|
|
||||||
|
```sh [pnpm]
|
||||||
|
pnpm install lucide-angular
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh [yarn]
|
||||||
yarn add lucide-angular
|
yarn add lucide-angular
|
||||||
```
|
```
|
||||||
|
|
||||||
or
|
```sh [npm]
|
||||||
|
|
||||||
```sh
|
|
||||||
npm install lucide-angular
|
npm install lucide-angular
|
||||||
```
|
```
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
For more details, see the [documentation](packages/lucide-angular.md).
|
For more details, see the [documentation](packages/lucide-angular.md).
|
||||||
|
|
||||||
## Preact
|
## Preact
|
||||||
|
|
||||||
Implementation of the lucide icon library for preact applications.
|
Implementation of the lucide icon library for preact applications.
|
||||||
|
|
||||||
```bash
|
::: code-group
|
||||||
|
|
||||||
|
```sh [pnpm]
|
||||||
|
pnpm install lucide-preact
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh [yarn]
|
||||||
yarn add lucide-preact
|
yarn add lucide-preact
|
||||||
```
|
```
|
||||||
|
|
||||||
or
|
```sh [npm]
|
||||||
|
|
||||||
```sh
|
|
||||||
npm install lucide-preact
|
npm install lucide-preact
|
||||||
```
|
```
|
||||||
|
|
||||||
For more details, see the [documentation](packages/lucide-preact.md).
|
:::
|
||||||
|
|
||||||
|
## Static usage
|
||||||
|
|
||||||
|
Implementation of the lucide icon library for multiple usages that like to use: SVG files icons, SVG Sprite, Icon Fonts and static SVG strings export in Common JS modules (for NodeJS).
|
||||||
|
|
||||||
|
::: code-group
|
||||||
|
|
||||||
|
```sh [pnpm]
|
||||||
|
pnpm install lucide-static
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh [yarn]
|
||||||
|
yarn add lucide-static
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh [npm]
|
||||||
|
npm install lucide-static
|
||||||
|
```
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
|
For more details, see the [documentation](packages/lucide-static.md).
|
||||||
|
|
||||||
## Figma
|
## Figma
|
||||||
|
|
||||||
@@ -134,16 +188,6 @@ Visit [Figma community page](https://www.figma.com/community/plugin/939567362549
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
## Laravel
|
|
||||||
|
|
||||||
Implementation of Lucide icon's using `blade-icons` for Laravel based projects.
|
|
||||||
|
|
||||||
```bash
|
|
||||||
composer require mallardduck/blade-lucide-icons
|
|
||||||
```
|
|
||||||
|
|
||||||
For more details, see the [documentation](https://github.com/mallardduck/blade-lucide-icons/blob/main/README.md).
|
|
||||||
|
|
||||||
## Flutter
|
## Flutter
|
||||||
|
|
||||||
Implementation of Lucide icon library for Flutter applications.
|
Implementation of Lucide icon library for Flutter applications.
|
||||||
|
|||||||
@@ -4,16 +4,22 @@ Implementation of the lucide icon library for Angular applications.
|
|||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
```bash
|
::: code-group
|
||||||
|
|
||||||
|
```sh [pnpm]
|
||||||
|
pnpm install lucide-angular
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh [yarn]
|
||||||
yarn add lucide-angular
|
yarn add lucide-angular
|
||||||
```
|
```
|
||||||
|
|
||||||
or
|
```sh [npm]
|
||||||
|
|
||||||
```bash
|
|
||||||
npm install lucide-angular
|
npm install lucide-angular
|
||||||
```
|
```
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
## How to use
|
## How to use
|
||||||
|
|
||||||
### Step 1: Import `LucideAngularModule`
|
### Step 1: Import `LucideAngularModule`
|
||||||
@@ -98,7 +104,9 @@ To add custom icons, you will first need to convert them to an [svgson format](h
|
|||||||
|
|
||||||
## Loading all icons
|
## Loading all icons
|
||||||
|
|
||||||
> :warning: You may also opt to import all icons if necessary using the following format but be aware that this will significantly increase your application build size.
|
::: danger
|
||||||
|
You may also opt to import all icons if necessary using the following format but be aware that this will significantly increase your application build size.
|
||||||
|
:::
|
||||||
|
|
||||||
```js
|
```js
|
||||||
import { icons } from 'lucide-angular';
|
import { icons } from 'lucide-angular';
|
||||||
|
|||||||
@@ -8,28 +8,34 @@ Implementation of the lucide icon library for preact applications.
|
|||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
```sh
|
::: code-group
|
||||||
|
|
||||||
|
```sh [pnpm]
|
||||||
|
pnpm install lucide-preact
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh [yarn]
|
||||||
yarn add lucide-preact
|
yarn add lucide-preact
|
||||||
```
|
```
|
||||||
|
|
||||||
or
|
```sh [npm]
|
||||||
|
|
||||||
```sh
|
|
||||||
npm install lucide-preact
|
npm install lucide-preact
|
||||||
```
|
```
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
## How to use
|
## How to use
|
||||||
|
|
||||||
It's build with ESmodules so it's completely tree-shakable.
|
It's build with ES Modules so it's completely tree-shakable.
|
||||||
Each icon can be imported as a preact component.
|
|
||||||
|
Each icon can be imported as a Preact component, what renders a inline SVG Element. This way only the icons that are imported into your project are included in the final bundle. The rest of the icons are tree-shaken away.
|
||||||
|
|
||||||
### Example
|
### Example
|
||||||
|
|
||||||
You can pass additional props to adjust the icon.
|
Additional props can be passed to adjust the icon:
|
||||||
|
|
||||||
```js
|
```jsx
|
||||||
import { Camera } from 'lucide-preact';
|
import { Camera } from 'lucide-preact';
|
||||||
// Returns PreactComponent
|
|
||||||
|
|
||||||
// Usage
|
// Usage
|
||||||
const App = () => {
|
const App = () => {
|
||||||
@@ -39,7 +45,7 @@ const App = () => {
|
|||||||
export default App;
|
export default App;
|
||||||
```
|
```
|
||||||
|
|
||||||
### Props
|
## Props
|
||||||
|
|
||||||
| name | type | default |
|
| name | type | default |
|
||||||
| --------------------- | --------- | ------------ |
|
| --------------------- | --------- | ------------ |
|
||||||
@@ -48,29 +54,31 @@ export default App;
|
|||||||
| `strokeWidth` | *number* | 2 |
|
| `strokeWidth` | *number* | 2 |
|
||||||
| `absoluteStrokeWidth` | *boolean* | false |
|
| `absoluteStrokeWidth` | *boolean* | false |
|
||||||
|
|
||||||
### Custom props / svg attributes
|
### Applying props
|
||||||
|
|
||||||
You can also pass custom props that will be added in the as attributes. With that you can modify the icons look by passing svg attributes.
|
To apply custom props to change the look of the icon, this can be done by simply pass them as props to the component. All SVG attributes are available as props to style the SVGs. See the list of SVG Presentation Attributes on [MDN](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/Presentation).
|
||||||
|
|
||||||
```js
|
```jsx
|
||||||
// Usage
|
// Usage
|
||||||
const App = () => {
|
const App = () => {
|
||||||
return <Camera fill="red" stroke-linejoin="bevel" />;
|
return <Camera fill="red" stroke-linejoin="bevel" />;
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
> svg attributes in preact aren't transformed, so if want to change e.g. the `stroke-linejoin` you need to pass it in kebabcase, the way svg spec is written so. See this topic in the [preact documentation](https://preactjs.com/guide/v10/differences-to-react/#svg-inside-jsx).
|
> SVG attributes in Preact aren't transformed, so if you want to change for example the `stroke-linejoin` you need to pass it in kebabcase. Basically how the SVG spec want you to write it. See this topic in the [Preact documentation](https://preactjs.com/guide/v10/differences-to-react/#svg-inside-jsx).
|
||||||
|
|
||||||
### One generic icon component
|
## One generic icon component
|
||||||
|
|
||||||
It is possible to create one generic icon component to load icons.
|
It is possible to create one generic icon component to load icons. It's not recommended.
|
||||||
|
|
||||||
> ⚠️ Example below importing all EsModules, caution using this example, not recommended when you using bundlers, your application build size will grow strongly.
|
::: danger
|
||||||
|
Example below importing all ES Modules, caution using this example. All icons will be imported. When using bundlers like: `Webpack`, `Rollup` or `Vite` the application build size will grow strongly and harming the performance the application.
|
||||||
|
:::
|
||||||
|
|
||||||
#### Icon Component Example
|
### Icon Component Example
|
||||||
|
|
||||||
```js
|
```jsx
|
||||||
import * as icons from 'lucide-preact';
|
import { icons } from 'lucide-preact';
|
||||||
|
|
||||||
const Icon = ({ name, color, size }) => {
|
const Icon = ({ name, color, size }) => {
|
||||||
const LucideIcon = icons[name];
|
const LucideIcon = icons[name];
|
||||||
@@ -80,3 +88,15 @@ const Icon = ({ name, color, size }) => {
|
|||||||
|
|
||||||
export default Icon;
|
export default Icon;
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Using the Icon Component
|
||||||
|
|
||||||
|
```jsx
|
||||||
|
import Icon from './Icon';
|
||||||
|
|
||||||
|
const App = () => {
|
||||||
|
return <Icon name="home" />;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default App;
|
||||||
|
```
|
||||||
|
|||||||
@@ -6,28 +6,32 @@ Implementation of the lucide icon library for React Native applications
|
|||||||
|
|
||||||
First, ensure that you have `react-native-svg@^12.0.0` installed. Then, install the package:
|
First, ensure that you have `react-native-svg@^12.0.0` installed. Then, install the package:
|
||||||
|
|
||||||
```bash
|
::: code-group
|
||||||
|
|
||||||
|
```sh [pnpm]
|
||||||
|
pnpm install lucide-react-native
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh [yarn]
|
||||||
yarn add lucide-react-native
|
yarn add lucide-react-native
|
||||||
```
|
```
|
||||||
|
|
||||||
or
|
```sh [npm]
|
||||||
|
|
||||||
```sh
|
|
||||||
npm install lucide-react-native
|
npm install lucide-react-native
|
||||||
```
|
```
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
## How to use
|
## How to use
|
||||||
|
|
||||||
It's build with ESmodules so it's completely tree-shakable.
|
Each icon can be imported as a React component.
|
||||||
Each icon can be imported as a react component.
|
|
||||||
|
|
||||||
### Example
|
### Example
|
||||||
|
|
||||||
You can pass additional props to adjust the icon.
|
Additional props can be passed to adjust the icon:
|
||||||
|
|
||||||
```js
|
```jsx
|
||||||
import { Camera } from 'lucide-react-native';
|
import { Camera } from 'lucide-react-native';
|
||||||
// Returns ReactComponent
|
|
||||||
|
|
||||||
// Usage
|
// Usage
|
||||||
const App = () => {
|
const App = () => {
|
||||||
@@ -37,7 +41,7 @@ const App = () => {
|
|||||||
export default App;
|
export default App;
|
||||||
```
|
```
|
||||||
|
|
||||||
### Props
|
## Props
|
||||||
|
|
||||||
| name | type | default |
|
| name | type | default |
|
||||||
| --------------------- | --------- | ------------ |
|
| --------------------- | --------- | ------------ |
|
||||||
@@ -46,27 +50,29 @@ export default App;
|
|||||||
| `strokeWidth` | *number* | 2 |
|
| `strokeWidth` | *number* | 2 |
|
||||||
| `absoluteStrokeWidth` | *boolean* | false |
|
| `absoluteStrokeWidth` | *boolean* | false |
|
||||||
|
|
||||||
### Custom props
|
### Applying props
|
||||||
|
|
||||||
You can also pass custom props that will be added in the svg as attributes.
|
To apply custom props to change the look of the icon, this can be done by simply pass them as props to the component.
|
||||||
|
|
||||||
```js
|
```jsx
|
||||||
// Usage
|
// Usage
|
||||||
const App = () => {
|
const App = () => {
|
||||||
return <Camera fill="red" />;
|
return <Camera fill="red" />;
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
### One generic icon component
|
## One generic icon component
|
||||||
|
|
||||||
It is possible to create one generic icon component to load icons.
|
It is possible to create one generic icon component to load icons.
|
||||||
|
|
||||||
> :warning: Example below importing all EsModules, caution using this example, not recommended when you using bundlers, your application build size will grow strongly.
|
::: warning
|
||||||
|
Example below importing all ES Modules, caution using this example. All icons will be imported. When using bundlers like: `Webpack`, `Rollup` or `Vite` the application build size will grow strongly and harming the performance the application.
|
||||||
|
:::
|
||||||
|
|
||||||
#### Icon Component Example
|
### Icon Component Example
|
||||||
|
|
||||||
```js
|
```jsx
|
||||||
import * as icons from 'lucide-react';
|
import { icons } from 'lucide-react';
|
||||||
|
|
||||||
const Icon = ({ name, color, size }) => {
|
const Icon = ({ name, color, size }) => {
|
||||||
const LucideIcon = icons[name];
|
const LucideIcon = icons[name];
|
||||||
@@ -76,3 +82,15 @@ const Icon = ({ name, color, size }) => {
|
|||||||
|
|
||||||
export default Icon;
|
export default Icon;
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Using the Icon Component
|
||||||
|
|
||||||
|
```jsx
|
||||||
|
import Icon from './Icon';
|
||||||
|
|
||||||
|
const App = () => {
|
||||||
|
return <Icon name="home" />;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default App;
|
||||||
|
```
|
||||||
|
|||||||
@@ -4,28 +4,34 @@ Implementation of the lucide icon library for react applications
|
|||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
```bash
|
::: code-group
|
||||||
|
|
||||||
|
```sh [pnpm]
|
||||||
|
pnpm install lucide-react
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh [yarn]
|
||||||
yarn add lucide-react
|
yarn add lucide-react
|
||||||
```
|
```
|
||||||
|
|
||||||
or
|
```sh [npm]
|
||||||
|
|
||||||
```sh
|
|
||||||
npm install lucide-react
|
npm install lucide-react
|
||||||
```
|
```
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
## How to use
|
## How to use
|
||||||
|
|
||||||
It's build with ESmodules so it's completely tree-shakable.
|
It's build with ES Modules so it's completely tree-shakable.
|
||||||
Each icon can be imported as a react component.
|
|
||||||
|
Each icon can be imported as a React component, what renders a inline SVG Element. This way only the icons that are imported into your project are included in the final bundle. The rest of the icons are tree-shaken away.
|
||||||
|
|
||||||
### Example
|
### Example
|
||||||
|
|
||||||
You can pass additional props to adjust the icon.
|
Additional props can be passed to adjust the icon:
|
||||||
|
|
||||||
```js
|
```jsx
|
||||||
import { Camera } from 'lucide-react';
|
import { Camera } from 'lucide-react';
|
||||||
// Returns ReactComponent
|
|
||||||
|
|
||||||
// Usage
|
// Usage
|
||||||
const App = () => {
|
const App = () => {
|
||||||
@@ -35,7 +41,7 @@ const App = () => {
|
|||||||
export default App;
|
export default App;
|
||||||
```
|
```
|
||||||
|
|
||||||
### Props
|
## Props
|
||||||
|
|
||||||
| name | type | default |
|
| name | type | default |
|
||||||
| --------------------- | --------- | ------------ |
|
| --------------------- | --------- | ------------ |
|
||||||
@@ -44,27 +50,29 @@ export default App;
|
|||||||
| `strokeWidth` | *number* | 2 |
|
| `strokeWidth` | *number* | 2 |
|
||||||
| `absoluteStrokeWidth` | *boolean* | false |
|
| `absoluteStrokeWidth` | *boolean* | false |
|
||||||
|
|
||||||
### Custom props
|
### Applying props
|
||||||
|
|
||||||
You can also pass custom props that will be added in the svg as attributes.
|
To apply custom props to change the look of the icon, this can be done by simply pass them as props to the component. All SVG attributes are available as props to style the SVGs. See the list of SVG Presentation Attributes on [MDN](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/Presentation).
|
||||||
|
|
||||||
```js
|
```jsx
|
||||||
// Usage
|
// Usage
|
||||||
const App = () => {
|
const App = () => {
|
||||||
return <Camera fill="red" />;
|
return <Camera size={48} fill="red" />;
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
### One generic icon component
|
## One generic icon component
|
||||||
|
|
||||||
It is possible to create one generic icon component to load icons.
|
It is possible to create one generic icon component to load icons. It's not recommended.
|
||||||
|
|
||||||
> :warning: Example below importing all EsModules, caution using this example, not recommended when you using bundlers, your application build size will grow strongly.
|
::: danger
|
||||||
|
Example below importing all ES Modules, caution using this example. All icons will be imported. When using bundlers like: `Webpack`, `Rollup` or `Vite` the application build size will grow strongly and harming the performance the application.
|
||||||
|
:::
|
||||||
|
|
||||||
#### Icon Component Example
|
### Icon Component Example
|
||||||
|
|
||||||
```js
|
```jsx
|
||||||
import * as icons from 'lucide-react';
|
import { icons } from 'lucide-react';
|
||||||
|
|
||||||
const Icon = ({ name, color, size }) => {
|
const Icon = ({ name, color, size }) => {
|
||||||
const LucideIcon = icons[name];
|
const LucideIcon = icons[name];
|
||||||
@@ -74,3 +82,15 @@ const Icon = ({ name, color, size }) => {
|
|||||||
|
|
||||||
export default Icon;
|
export default Icon;
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Using the Icon Component
|
||||||
|
|
||||||
|
```jsx
|
||||||
|
import Icon from './Icon';
|
||||||
|
|
||||||
|
const App = () => {
|
||||||
|
return <Icon name="home" />;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default App;
|
||||||
|
```
|
||||||
|
|||||||
@@ -4,28 +4,34 @@ Implementation of the lucide icon library for solid applications.
|
|||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
```sh
|
::: code-group
|
||||||
|
|
||||||
|
```sh [pnpm]
|
||||||
|
pnpm install lucide-solid
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh [yarn]
|
||||||
yarn add lucide-solid
|
yarn add lucide-solid
|
||||||
```
|
```
|
||||||
|
|
||||||
or
|
```sh [npm]
|
||||||
|
|
||||||
```sh
|
|
||||||
npm install lucide-solid
|
npm install lucide-solid
|
||||||
```
|
```
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
## How to use
|
## How to use
|
||||||
|
|
||||||
It's build with ESmodules so it's completely tree-shakable.
|
It's build with ES Modules so it's completely tree-shakable.
|
||||||
Each icon can be imported as a solid component.
|
|
||||||
|
Each icon can be imported as a Solid component, what renders a inline SVG Element. This way only the icons that are imported into your project are included in the final bundle. The rest of the icons are tree-shaken away.
|
||||||
|
|
||||||
### Example
|
### Example
|
||||||
|
|
||||||
You can pass additional props to adjust the icon.
|
Additional props can be passed to adjust the icon:
|
||||||
|
|
||||||
```js
|
```jsx
|
||||||
import { Camera } from 'lucide-solid';
|
import { Camera } from 'lucide-solid';
|
||||||
// Returns SolidComponent
|
|
||||||
|
|
||||||
// Usage
|
// Usage
|
||||||
const App = () => {
|
const App = () => {
|
||||||
@@ -35,7 +41,7 @@ const App = () => {
|
|||||||
export default App;
|
export default App;
|
||||||
```
|
```
|
||||||
|
|
||||||
### Props
|
## Props
|
||||||
|
|
||||||
| name | type | default |
|
| name | type | default |
|
||||||
| --------------------- | --------- | ------------ |
|
| --------------------- | --------- | ------------ |
|
||||||
@@ -44,32 +50,37 @@ export default App;
|
|||||||
| `strokeWidth` | *number* | 2 |
|
| `strokeWidth` | *number* | 2 |
|
||||||
| `absoluteStrokeWidth` | *boolean* | false |
|
| `absoluteStrokeWidth` | *boolean* | false |
|
||||||
|
|
||||||
### Custom props / svg attributes
|
### Applying props
|
||||||
|
|
||||||
You can also pass custom props that will be added in the as attributes. With that you can modify the icons look by passing svg attributes.
|
To apply custom props to change the look of the icon, this can be done by simply pass them as props to the component. All SVG attributes are available as props to style the SVGs. See the list of SVG Presentation Attributes on [MDN](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/Presentation).
|
||||||
|
|
||||||
```js
|
```jsx
|
||||||
// Usage
|
// Usage
|
||||||
const App = () => {
|
const App = () => {
|
||||||
return <Camera fill="red" stroke-linejoin="bevel" />;
|
return <Camera fill="red" stroke-linejoin="bevel" />;
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
### One generic icon component
|
## One generic icon component
|
||||||
|
|
||||||
It is possible to create one generic icon component to load icons.
|
It is possible to create one generic icon component to load icons. It's not recommended.
|
||||||
|
|
||||||
> :warning: Example below importing all EsModules, caution using this example, not recommended when you using bundlers, your application build size will grow strongly.
|
::: danger
|
||||||
|
Example below importing all ES Modules, caution using this example. All icons will be imported. When using bundlers like: `Webpack`, `Rollup` or `Vite` the application build size will grow strongly and harming the performance the application.
|
||||||
|
:::
|
||||||
|
|
||||||
#### Icon Component Example
|
### Icon Component Example
|
||||||
|
|
||||||
```tsx
|
```tsx
|
||||||
import * as icons from 'lucide-solid';
|
import { icons, type LucideProps } from 'lucide-solid';
|
||||||
import type { LucideProps } from 'lucide-solid';
|
|
||||||
import { splitProps } from 'solid-js';
|
import { splitProps } from 'solid-js';
|
||||||
import { Dynamic } from 'solid-js/web';
|
import { Dynamic } from 'solid-js/web';
|
||||||
|
|
||||||
const Icon = (props: { name: keyof typeof icons } & LucideProps) => {
|
interface IconProps extends LucideProps {
|
||||||
|
name: keyof typeof icons;
|
||||||
|
}
|
||||||
|
|
||||||
|
const Icon = (props: IconProps) => {
|
||||||
const [local, others] = splitProps(props, ["name"]);
|
const [local, others] = splitProps(props, ["name"]);
|
||||||
|
|
||||||
return <Dynamic component={icons[local.name]} {...others} />
|
return <Dynamic component={icons[local.name]} {...others} />
|
||||||
@@ -77,3 +88,15 @@ const Icon = (props: { name: keyof typeof icons } & LucideProps) => {
|
|||||||
|
|
||||||
export default Icon;
|
export default Icon;
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Using the Icon Component
|
||||||
|
|
||||||
|
```tsx
|
||||||
|
import Icon from './Icon';
|
||||||
|
|
||||||
|
const App = () => {
|
||||||
|
return <Icon name="home" />;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default App;
|
||||||
|
```
|
||||||
|
|||||||
@@ -11,22 +11,30 @@ This package include the following lucide implementations:
|
|||||||
|
|
||||||
This package is suitable for specific use cases, for example if you want to use icon fonts, SVG sprites, normal SVGs or Common.js SVG strings in your javascript project.
|
This package is suitable for specific use cases, for example if you want to use icon fonts, SVG sprites, normal SVGs or Common.js SVG strings in your javascript project.
|
||||||
|
|
||||||
> ⚠️ While they can be useful for prototyping, it is not recommended to use the SVG sprites or icon fonts provided by this package in production web apps as all the available icons are included in the app, hence increasing loading time and data usage. We recommend to use a bundler and treeshaking to make sure only the icons you use are bundled with your app. Threeshaking is only available in these packages: [lucide](lucide), [lucide-react](lucide-react), [lucide-vue](lucide-vue), [lucide-vue-next](lucide-vue-next), [lucide-angular](lucide-angular), [lucide-preact](lucide-preact)
|
::: warning
|
||||||
|
While they can be useful for prototyping, it is not recommended to use the SVG sprites or icon fonts provided by this package in production web apps as all the available icons are included in the app, hence increasing loading time and data usage. We recommend to use a bundler and tree-shaking to make sure only the icons you use are bundled with your app. Tree-shaking is only available in these packages: [lucide](lucide), [lucide-react](lucide-react), [lucide-vue](lucide-vue), [lucide-vue-next](lucide-vue-next), [lucide-angular](lucide-angular), [lucide-preact](lucide-preact)
|
||||||
|
:::
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
## Package Managers
|
## Package Managers
|
||||||
|
|
||||||
```sh
|
::: code-group
|
||||||
|
|
||||||
|
```sh [pnpm]
|
||||||
|
pnpm install lucide-static
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh [yarn]
|
||||||
yarn add lucide-static
|
yarn add lucide-static
|
||||||
```
|
```
|
||||||
|
|
||||||
or
|
```sh [npm]
|
||||||
|
|
||||||
```sh
|
|
||||||
npm install lucide-static
|
npm install lucide-static
|
||||||
```
|
```
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
### CDN
|
### CDN
|
||||||
|
|
||||||
```html
|
```html
|
||||||
|
|||||||
@@ -4,25 +4,33 @@ Implementation of the lucide icon library for svelte applications.
|
|||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
```bash
|
::: code-group
|
||||||
|
|
||||||
|
```sh [pnpm]
|
||||||
|
pnpm install lucide-svelte
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh [yarn]
|
||||||
yarn add lucide-svelte
|
yarn add lucide-svelte
|
||||||
```
|
```
|
||||||
|
|
||||||
or
|
```sh [npm]
|
||||||
|
|
||||||
```sh
|
|
||||||
npm install lucide-svelte
|
npm install lucide-svelte
|
||||||
```
|
```
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
## How to use
|
## How to use
|
||||||
|
|
||||||
All the icons are Svelte components, that ouputs Svg elements. So each icon can be imported and used as a component. This also helps with the use of threeshaking so you only import the icons you use.
|
It's build with ES Modules so it's completely tree-shakable.
|
||||||
|
|
||||||
|
Each icon can be imported as a Svelte component, what renders a inline SVG Element. This way only the icons that are imported into your project are included in the final bundle. The rest of the icons are tree-shaken away.
|
||||||
|
|
||||||
### Example
|
### Example
|
||||||
|
|
||||||
Default usage:
|
Default usage:
|
||||||
|
|
||||||
```html
|
```svelte
|
||||||
<script>
|
<script>
|
||||||
import { Skull } from 'lucide-svelte';
|
import { Skull } from 'lucide-svelte';
|
||||||
</script>
|
</script>
|
||||||
@@ -30,9 +38,9 @@ Default usage:
|
|||||||
<Skull />
|
<Skull />
|
||||||
```
|
```
|
||||||
|
|
||||||
You can pass additional props to adjust the icon.
|
Additional props can be passed to adjust the icon:
|
||||||
|
|
||||||
```html
|
```svelte
|
||||||
<script>
|
<script>
|
||||||
import { Camera } from 'lucide-svelte';
|
import { Camera } from 'lucide-svelte';
|
||||||
</script>
|
</script>
|
||||||
@@ -40,7 +48,7 @@ You can pass additional props to adjust the icon.
|
|||||||
<Camera color="#ff3e98" />
|
<Camera color="#ff3e98" />
|
||||||
```
|
```
|
||||||
|
|
||||||
### Available props
|
## Props
|
||||||
|
|
||||||
| name | type | default |
|
| name | type | default |
|
||||||
| --------------------- | --------- | ------------ |
|
| --------------------- | --------- | ------------ |
|
||||||
@@ -48,14 +56,12 @@ You can pass additional props to adjust the icon.
|
|||||||
| `color` | *string* | currentColor |
|
| `color` | *string* | currentColor |
|
||||||
| `strokeWidth` | *number* | 2 |
|
| `strokeWidth` | *number* | 2 |
|
||||||
| `absoluteStrokeWidth` | *boolean* | false |
|
| `absoluteStrokeWidth` | *boolean* | false |
|
||||||
| `*<SVGProps>` | *string* | - |
|
|
||||||
|
|
||||||
|
### Applying props
|
||||||
|
|
||||||
\* All SVGProps are available to style the svgs. See the list of SVG Presentation Attributes on [MDN](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/Presentation)
|
To apply custom props to change the look of the icon, this can be done by simply pass them as props to the component. All SVG attributes are available as props to style the SVGs. See the list of SVG Presentation Attributes on [MDN](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/Presentation).
|
||||||
|
|
||||||
### Example of custom props
|
```svelte
|
||||||
|
|
||||||
```html
|
|
||||||
<script>
|
<script>
|
||||||
import { Phone } from 'lucide-svelte';
|
import { Phone } from 'lucide-svelte';
|
||||||
</script>
|
</script>
|
||||||
@@ -65,15 +71,17 @@ You can pass additional props to adjust the icon.
|
|||||||
|
|
||||||
This results a filled phone icon.
|
This results a filled phone icon.
|
||||||
|
|
||||||
### One generic icon component
|
## One generic icon component
|
||||||
|
|
||||||
It is possible to create one generic icon component to load icons.
|
It is possible to create one generic icon component to load icons. It's not recommended.
|
||||||
|
|
||||||
> ⚠️ Example below importing all EsModules, caution using this example, not recommended when you bundle your application,the build size will grow strongly. Because it will import all the icons.
|
::: danger
|
||||||
|
Example below importing all ES Modules, caution using this example. All icons will be imported. When using bundlers like: `Webpack`, `Rollup` or `Vite` the application build size will grow strongly and harming the performance the application.
|
||||||
|
:::
|
||||||
|
|
||||||
#### Icon Component Example
|
### Icon Component Example
|
||||||
|
|
||||||
```html
|
```svelte
|
||||||
<script>
|
<script>
|
||||||
import * as icons from 'lucide-svelte';
|
import * as icons from 'lucide-svelte';
|
||||||
export let name;
|
export let name;
|
||||||
@@ -82,12 +90,13 @@ It is possible to create one generic icon component to load icons.
|
|||||||
<svelte:component this="{icons[name]}" {...$$props} />
|
<svelte:component this="{icons[name]}" {...$$props} />
|
||||||
```
|
```
|
||||||
|
|
||||||
##### Then you can use it like this
|
#### Using the Icon Component
|
||||||
|
|
||||||
```html
|
```svelte
|
||||||
<script>
|
<script>
|
||||||
import LucideIcon from './LucideIcon';
|
import LucideIcon from './LucideIcon';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<LucideIcon name="Menu" />
|
<LucideIcon name="Menu" />
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -2,32 +2,41 @@
|
|||||||
|
|
||||||
Implementation of the lucide icon library for Vue 3 applications.
|
Implementation of the lucide icon library for Vue 3 applications.
|
||||||
|
|
||||||
> ⚠️ This version of lucide is for Vue 3, For Vue 2 got to [lucide-vue](lucide-vue)
|
## Vue 3 or Vue 2
|
||||||
|
|
||||||
|
::: tip
|
||||||
|
This version of lucide is for Vue 3, For Vue 2 got to [lucide-vue ->](lucide-vue)
|
||||||
|
:::
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
**With yarn**
|
::: code-group
|
||||||
|
|
||||||
```bash
|
```sh [pnpm]
|
||||||
|
pnpm install lucide-vue-next
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh [yarn]
|
||||||
yarn add lucide-vue-next
|
yarn add lucide-vue-next
|
||||||
```
|
```
|
||||||
|
|
||||||
**With npm**
|
```sh [npm]
|
||||||
|
|
||||||
```bash
|
|
||||||
npm install lucide-vue-next
|
npm install lucide-vue-next
|
||||||
```
|
```
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
## How to use
|
## How to use
|
||||||
|
|
||||||
It's build with ESmodules so it's completely tree-shakable.
|
It's build with ES Modules so it's completely tree-shakable.
|
||||||
Each icon can be imported as a vue component.
|
|
||||||
|
Each icon can be imported as a Vue component, what renders a inline SVG Element. This way only the icons that are imported into your project are included in the final bundle. The rest of the icons are tree-shaken away.
|
||||||
|
|
||||||
### Example
|
### Example
|
||||||
|
|
||||||
You can pass additional props to adjust the icon.
|
You can pass additional props to adjust the icon.
|
||||||
|
|
||||||
``` html
|
```vue
|
||||||
<template>
|
<template>
|
||||||
<Camera
|
<Camera
|
||||||
color="red"
|
color="red"
|
||||||
@@ -40,7 +49,7 @@ import { Camera } from 'lucide-vue-next';
|
|||||||
</script>
|
</script>
|
||||||
```
|
```
|
||||||
|
|
||||||
### Props
|
## Props
|
||||||
|
|
||||||
| name | type | default |
|
| name | type | default |
|
||||||
| ----------------------- | --------- | ------------ |
|
| ----------------------- | --------- | ------------ |
|
||||||
@@ -50,34 +59,27 @@ import { Camera } from 'lucide-vue-next';
|
|||||||
| `absolute-stroke-width` | *boolean* | false |
|
| `absolute-stroke-width` | *boolean* | false |
|
||||||
| `default-class` | *string* | lucide-icon |
|
| `default-class` | *string* | lucide-icon |
|
||||||
|
|
||||||
### Custom props
|
### Applying props
|
||||||
|
|
||||||
You can also pass custom props that will be added in the svg as attributes.
|
To apply custom props to change the look of the icon, this can be done by simply pass them as props to the component. All SVG attributes are available as props to style the SVGs. See the list of SVG Presentation Attributes on [MDN](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/Presentation).
|
||||||
|
|
||||||
``` html
|
```vue
|
||||||
<template>
|
<template>
|
||||||
<Camera fill="red" />
|
<Camera fill="red" />
|
||||||
</template>
|
</template>
|
||||||
```
|
```
|
||||||
|
|
||||||
### One generic icon component
|
## One generic icon component
|
||||||
|
|
||||||
It is possible to create one generic icon component to load icons.
|
It is possible to create one generic icon component to load icons. It's not recommended.
|
||||||
|
|
||||||
> ⚠️ Example below importing all EsModules, caution using this example, not recommended when you using bundlers, your application build size will grow strongly.
|
::: danger
|
||||||
|
Example below importing all ES Modules, caution using this example. All icons will be imported. When using bundlers like: `Webpack`, `Rollup` or `Vite` the application build size will grow strongly and harming the performance the application.
|
||||||
|
:::
|
||||||
|
|
||||||
#### Icon Component Example
|
### Icon Component Example
|
||||||
|
|
||||||
``` html
|
|
||||||
<template>
|
|
||||||
<component
|
|
||||||
:is="icon"
|
|
||||||
:size="size"
|
|
||||||
:color="color"
|
|
||||||
:stroke-width="strokeWidth" :default-class="defaultClass"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
|
```vue
|
||||||
<script setup>
|
<script setup>
|
||||||
import { computed } from 'vue';
|
import { computed } from 'vue';
|
||||||
import * as icons from "lucide-vue-next";
|
import * as icons from "lucide-vue-next";
|
||||||
@@ -95,15 +97,25 @@ const props = defineProps({
|
|||||||
|
|
||||||
const icon = computed(() => icons[props.name]);
|
const icon = computed(() => icons[props.name]);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<component
|
||||||
|
:is="icon"
|
||||||
|
:size="size"
|
||||||
|
:color="color"
|
||||||
|
:stroke-width="strokeWidth" :default-class="defaultClass"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
```
|
```
|
||||||
|
|
||||||
##### Then you can use it like this
|
### Using the Icon Component
|
||||||
|
|
||||||
``` html
|
All other props listed above also work on the `Icon` Component.
|
||||||
|
|
||||||
|
```vue
|
||||||
<template>
|
<template>
|
||||||
<div id="app">
|
<div id="app">
|
||||||
<Icon name="Airplay" />
|
<Icon name="Airplay" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
```
|
```
|
||||||
All other props listed above also work on the `Icon` Component.
|
|
||||||
|
|||||||
@@ -2,36 +2,46 @@
|
|||||||
|
|
||||||
Implementation of the lucide icon library for Vue applications.
|
Implementation of the lucide icon library for Vue applications.
|
||||||
|
|
||||||
> ⚠️ This version of lucide is for Vue 2, For Vue 3 got to [lucide-vue-next](lucide-vue-next)
|
## Vue 2 or Vue 3
|
||||||
|
|
||||||
|
::: tip
|
||||||
|
This version of lucide is for Vue 2, For Vue 3 go to [lucide-vue-next ->](lucide-vue-next)
|
||||||
|
:::
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
```sh
|
::: code-group
|
||||||
|
|
||||||
|
```sh [pnpm]
|
||||||
|
pnpm install lucide-vue
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh [yarn]
|
||||||
yarn add lucide-vue
|
yarn add lucide-vue
|
||||||
```
|
```
|
||||||
|
|
||||||
or
|
```sh [npm]
|
||||||
|
|
||||||
```sh
|
|
||||||
npm install lucide-vue
|
npm install lucide-vue
|
||||||
```
|
```
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
## How to use
|
## How to use
|
||||||
|
|
||||||
It's build with ESmodules so it's completely tree-shakable.
|
It's build with ES Modules so it's completely tree-shakable.
|
||||||
Each icon can be imported as a vue component.
|
|
||||||
|
Each icon can be imported as a Vue component, what renders a inline SVG Element. This way only the icons that are imported into your project are included in the final bundle. The rest of the icons are tree-shaken away.
|
||||||
|
|
||||||
### Example
|
### Example
|
||||||
|
|
||||||
You can pass additional props to adjust the icon.
|
Additional props can be passed to adjust the icon:
|
||||||
|
|
||||||
```html
|
```vue
|
||||||
<template>
|
<template>
|
||||||
<Camera color="red" :size="32" />
|
<Camera color="red" :size="32" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
// Returns Vue component
|
|
||||||
import { Camera } from 'lucide-vue';
|
import { Camera } from 'lucide-vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@@ -41,7 +51,7 @@ You can pass additional props to adjust the icon.
|
|||||||
</script>
|
</script>
|
||||||
```
|
```
|
||||||
|
|
||||||
### Props
|
## Props
|
||||||
|
|
||||||
| name | type | default |
|
| name | type | default |
|
||||||
| ----------------------- | --------- | ------------ |
|
| ----------------------- | --------- | ------------ |
|
||||||
@@ -51,25 +61,27 @@ You can pass additional props to adjust the icon.
|
|||||||
| `absolute-stroke-width` | *boolean* | false |
|
| `absolute-stroke-width` | *boolean* | false |
|
||||||
| `default-class` | *string* | lucide-icon |
|
| `default-class` | *string* | lucide-icon |
|
||||||
|
|
||||||
### Custom props
|
### Applying props
|
||||||
|
|
||||||
You can also pass custom props that will be added in the svg as attributes.
|
To apply custom props to change the look of the icon, this can be done by simply pass them as props to the component. All SVG attributes are available as props to style the SVGs. See the list of SVG Presentation Attributes on [MDN](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/Presentation).
|
||||||
|
|
||||||
```html
|
```vue
|
||||||
<template>
|
<template>
|
||||||
<Camera fill="red" />
|
<Camera fill="red" />
|
||||||
</template>
|
</template>
|
||||||
```
|
```
|
||||||
|
|
||||||
### One generic icon component
|
## One generic icon component
|
||||||
|
|
||||||
It is possible to create one generic icon component to load icons.
|
It is possible to create one generic icon component to load icons. It's not recommended.
|
||||||
|
|
||||||
> ⚠️ Example below importing all EsModules, caution using this example, not recommended when you using bundlers, your application build size will grow strongly.
|
::: danger
|
||||||
|
Example below importing all ES Modules, caution using this example. All icons will be imported. When using bundlers like: `Webpack`, `Rollup` or `Vite` the application build size will grow strongly and harming the performance the application.
|
||||||
|
:::
|
||||||
|
|
||||||
#### Icon Component Example
|
### Icon Component Example
|
||||||
|
|
||||||
```html
|
```vue
|
||||||
<template>
|
<template>
|
||||||
<component :is="icon" />
|
<component :is="icon" />
|
||||||
</template>
|
</template>
|
||||||
@@ -93,9 +105,9 @@ It is possible to create one generic icon component to load icons.
|
|||||||
</script>
|
</script>
|
||||||
```
|
```
|
||||||
|
|
||||||
##### Then you can use it like this
|
#### Using the Icon Component
|
||||||
|
|
||||||
```html
|
```vue
|
||||||
<template>
|
<template>
|
||||||
<div id="app">
|
<div id="app">
|
||||||
<Icon name="Airplay" />
|
<Icon name="Airplay" />
|
||||||
|
|||||||
@@ -6,15 +6,21 @@ Implementation of the lucide icon library for web applications.
|
|||||||
|
|
||||||
### Package Managers
|
### Package Managers
|
||||||
|
|
||||||
```sh
|
::: code-group
|
||||||
|
|
||||||
|
```sh [pnpm]
|
||||||
|
pnpm install lucide
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh [yarn]
|
||||||
|
yarn add lucide
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh [npm]
|
||||||
npm install lucide
|
npm install lucide
|
||||||
```
|
```
|
||||||
|
|
||||||
or
|
:::
|
||||||
|
|
||||||
```sh
|
|
||||||
yarn add lucide
|
|
||||||
```
|
|
||||||
|
|
||||||
### CDN
|
### CDN
|
||||||
|
|
||||||
@@ -35,9 +41,9 @@ Here is a complete example with unpkg
|
|||||||
```html
|
```html
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<body>
|
<body>
|
||||||
<i icon-name="volume-2" class="my-class"></i>
|
<i data-lucide="volume-2" class="my-class"></i>
|
||||||
<i icon-name="x"></i>
|
<i data-lucide="x"></i>
|
||||||
<i icon-name="menu"></i>
|
<i data-lucide="menu"></i>
|
||||||
|
|
||||||
<script src="https://unpkg.com/lucide@latest"></script>
|
<script src="https://unpkg.com/lucide@latest"></script>
|
||||||
<script>
|
<script>
|
||||||
@@ -49,11 +55,11 @@ Here is a complete example with unpkg
|
|||||||
### With ESModules
|
### With ESModules
|
||||||
|
|
||||||
To reduce bundle size, lucide is built to be fully tree-shakable.
|
To reduce bundle size, lucide is built to be fully tree-shakable.
|
||||||
The `createIcons` function will search for HTMLElements with the attribute `icon-name` and replace it with the svg from the given icon name.
|
The `createIcons` function will search for HTMLElements with the attribute `data-lucide` and replace it with the svg from the given icon name.
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<!-- Your HTML file -->
|
<!-- Your HTML file -->
|
||||||
<i icon-name="menu"></i>
|
<i data-lucide="menu"></i>
|
||||||
```
|
```
|
||||||
|
|
||||||
```js
|
```js
|
||||||
@@ -74,7 +80,9 @@ createIcons({
|
|||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Additional Options
|
## Advanced Usage
|
||||||
|
|
||||||
|
### Additional Options
|
||||||
|
|
||||||
In the `createIcons` function you can pass some extra parameters to adjust the `nameAttr` or add custom attributes like for example classes.
|
In the `createIcons` function you can pass some extra parameters to adjust the `nameAttr` or add custom attributes like for example classes.
|
||||||
|
|
||||||
@@ -89,11 +97,11 @@ createIcons({
|
|||||||
'stroke-width': 1,
|
'stroke-width': 1,
|
||||||
stroke: '#333'
|
stroke: '#333'
|
||||||
},
|
},
|
||||||
nameAttr: 'icon-name' // attribute for the icon name.
|
nameAttr: 'data-lucide' // attribute for the icon name.
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Treeshake the library, only use the icons you use
|
### Treeshake the library, only use the icons you use
|
||||||
|
|
||||||
```js
|
```js
|
||||||
import { createIcons, Menu, ArrowRight, Globe } from 'lucide';
|
import { createIcons, Menu, ArrowRight, Globe } from 'lucide';
|
||||||
@@ -107,7 +115,7 @@ createIcons({
|
|||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Custom Element binding
|
### Custom Element binding
|
||||||
|
|
||||||
```js
|
```js
|
||||||
import { createElement, Menu } from 'lucide';
|
import { createElement, Menu } from 'lucide';
|
||||||
|
|||||||
@@ -41,47 +41,47 @@ const codeExample = computed(() => data.codeExamples?.map(
|
|||||||
<div :class="$style.iconPreviews">
|
<div :class="$style.iconPreviews">
|
||||||
<IconPreview
|
<IconPreview
|
||||||
id="previewer"
|
id="previewer"
|
||||||
:name="$params.name"
|
:name="params.name"
|
||||||
:iconNode="$params.iconNode"
|
:iconNode="params.iconNode"
|
||||||
:class="$style.preview"
|
:class="$style.preview"
|
||||||
/>
|
/>
|
||||||
<IconPreviewSmall
|
<IconPreviewSmall
|
||||||
:name="$params.name"
|
:name="params.name"
|
||||||
:iconNode="$params.iconNode"
|
:iconNode="params.iconNode"
|
||||||
:class="$style.smallPreview"
|
:class="$style.smallPreview"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div >
|
<div >
|
||||||
<div :class="$style.info">
|
<div :class="$style.info">
|
||||||
<IconInfo :icon="$params" />
|
<IconInfo :icon="params" />
|
||||||
<div :class="$style.meta">
|
<div :class="$style.meta">
|
||||||
<div
|
<div
|
||||||
v-if="$params.createdRelease?.version"
|
v-if="params.createdRelease?.version"
|
||||||
:class="$style.version"
|
:class="$style.version"
|
||||||
>
|
>
|
||||||
<Label>Created:</Label>
|
<Label>Created:</Label>
|
||||||
<Badge
|
<Badge
|
||||||
:href="`https://github.com/lucide-icons/lucide/releases/tag/v${$params.createdRelease.version}`"
|
:href="`https://github.com/lucide-icons/lucide/releases/tag/v${params.createdRelease.version}`"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noreferrer noopener"
|
rel="noreferrer noopener"
|
||||||
>
|
>
|
||||||
v{{$params.createdRelease.version}}
|
v{{params.createdRelease.version}}
|
||||||
</Badge>
|
</Badge>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
v-if="$params.changedRelease?.version"
|
v-if="params.changedRelease?.version"
|
||||||
:class="$style.version"
|
:class="$style.version"
|
||||||
>
|
>
|
||||||
<Label>Last changed:</Label>
|
<Label>Last changed:</Label>
|
||||||
<Badge
|
<Badge
|
||||||
:href="`https://github.com/lucide-icons/lucide/releases/tag/v${$params.changedRelease.version}`"
|
:href="`https://github.com/lucide-icons/lucide/releases/tag/v${params.changedRelease.version}`"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noreferrer noopener"
|
rel="noreferrer noopener"
|
||||||
>
|
>
|
||||||
v{{$params.changedRelease.version}}
|
v{{params.changedRelease.version}}
|
||||||
</Badge>
|
</Badge>
|
||||||
</div>
|
</div>
|
||||||
<IconContributors :icon="$params" :class="$style.contributors"/>
|
<IconContributors :icon="params" :class="$style.contributors"/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<CodeGroup
|
<CodeGroup
|
||||||
@@ -97,7 +97,7 @@ const codeExample = computed(() => data.codeExamples?.map(
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<RelatedIcons :icons="$params.relatedIcons" />
|
<RelatedIcons :icons="params.relatedIcons" />
|
||||||
|
|
||||||
<style module>
|
<style module>
|
||||||
.preview {
|
.preview {
|
||||||
@@ -117,6 +117,10 @@ const codeExample = computed(() => data.codeExamples?.map(
|
|||||||
margin-top: 24px;
|
margin-top: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.info {
|
||||||
|
--tags-gradient-background: var(--vp-c-bg);
|
||||||
|
}
|
||||||
|
|
||||||
.version, .contributors {
|
.version, .contributors {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
|||||||
@@ -1,18 +1,18 @@
|
|||||||
import { getAllData } from "../.vitepress/lib/icons";
|
|
||||||
import relatedIcons from '../.vitepress/data/relatedIcons.json'
|
import relatedIcons from '../.vitepress/data/relatedIcons.json'
|
||||||
import iconNodes from '../.vitepress/data/iconNodes'
|
import iconNodes from '../.vitepress/data/iconNodes'
|
||||||
|
import * as iconDetails from '../.vitepress/data/iconDetails'
|
||||||
|
import { IconEntity } from "../.vitepress/theme/types";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
paths: async () => {
|
paths: async () => {
|
||||||
const icons = await getAllData()
|
return (Object.values(iconDetails) as unknown as IconEntity[]).map((iconEntity) => {
|
||||||
return icons.map((iconEntity) => {
|
|
||||||
|
|
||||||
const params = {
|
const params = {
|
||||||
...iconEntity,
|
...iconEntity,
|
||||||
relatedIcons: relatedIcons[iconEntity.name].map((name: string) => ({
|
relatedIcons: relatedIcons[iconEntity.name].map((name: string) => ({
|
||||||
name,
|
name,
|
||||||
iconNode: iconNodes[name],
|
iconNode: iconNodes[name],
|
||||||
})),
|
}))
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
import { getAllData } from '../.vitepress/lib/icons'
|
import iconNodes from '../.vitepress/data/iconNodes'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
async load() {
|
async load() {
|
||||||
return {
|
return {
|
||||||
icons: await getAllData(),
|
icons: Object.entries(iconNodes).map(([name, iconNode]) => ({ name, iconNode })),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,6 +13,7 @@
|
|||||||
"prebuild:metaJson": "node ../scripts/writeIconMetaIndex.mjs",
|
"prebuild:metaJson": "node ../scripts/writeIconMetaIndex.mjs",
|
||||||
"prebuild:releaseJson": "node ../scripts/writeReleaseMetadata.mjs",
|
"prebuild:releaseJson": "node ../scripts/writeReleaseMetadata.mjs",
|
||||||
"prebuild:relatedIcons": "node ../scripts/writeIconRelatedIcons.mjs",
|
"prebuild:relatedIcons": "node ../scripts/writeIconRelatedIcons.mjs",
|
||||||
|
"prebuild:iconDetails": "node ../scripts/writeIconDetails.mjs",
|
||||||
"postbuild:vercelJson": "node ../scripts/writeVercelOutput.mjs",
|
"postbuild:vercelJson": "node ../scripts/writeVercelOutput.mjs",
|
||||||
"dev": "npx nitropack dev",
|
"dev": "npx nitropack dev",
|
||||||
"build:api": "npx nitropack build",
|
"build:api": "npx nitropack build",
|
||||||
|
|||||||
@@ -29,7 +29,7 @@
|
|||||||
"has": [
|
"has": [
|
||||||
{
|
{
|
||||||
"type": "query",
|
"type": "query",
|
||||||
"key": "page"
|
"key": "search"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"destination": "/icons",
|
"destination": "/icons",
|
||||||
|
|||||||
@@ -10,10 +10,12 @@
|
|||||||
"warning",
|
"warning",
|
||||||
"alert",
|
"alert",
|
||||||
"danger",
|
"danger",
|
||||||
"exclamation mark"
|
"exclamation mark",
|
||||||
|
"linter"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"notifications",
|
"notifications",
|
||||||
"shapes"
|
"shapes",
|
||||||
|
"development"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -10,6 +10,6 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z" />
|
<path d="m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z" />
|
||||||
<line x1="12" x2="12" y1="9" y2="13" />
|
<path d="M12 9v4" />
|
||||||
<line x1="12" x2="12.01" y1="17" y2="17" />
|
<path d="M12 17h.01" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 385 B After Width: | Height: | Size: 346 B |
@@ -5,11 +5,17 @@
|
|||||||
"karsa-mistmere"
|
"karsa-mistmere"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"key",
|
"backwards",
|
||||||
|
"reverse",
|
||||||
|
"slow",
|
||||||
|
"direction",
|
||||||
|
"south",
|
||||||
"download"
|
"download"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows",
|
"arrows",
|
||||||
|
"navigation",
|
||||||
|
"gaming",
|
||||||
"files"
|
"files"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -6,9 +6,14 @@
|
|||||||
"danielbayley"
|
"danielbayley"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"key"
|
"backwards",
|
||||||
|
"reverse",
|
||||||
|
"direction",
|
||||||
|
"south"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows"
|
"arrows",
|
||||||
|
"navigation",
|
||||||
|
"gaming"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -5,10 +5,16 @@
|
|||||||
"karsa-mistmere"
|
"karsa-mistmere"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"key",
|
"previous",
|
||||||
"back"
|
"back",
|
||||||
|
"direction",
|
||||||
|
"west",
|
||||||
|
"turn",
|
||||||
|
"corner"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows"
|
"arrows",
|
||||||
|
"navigation",
|
||||||
|
"gaming"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -7,10 +7,15 @@
|
|||||||
"danielbayley"
|
"danielbayley"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"key",
|
"previous",
|
||||||
"back"
|
"back",
|
||||||
|
"direction",
|
||||||
|
"west",
|
||||||
|
"indicate turn"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows"
|
"arrows",
|
||||||
|
"navigation",
|
||||||
|
"gaming"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -5,10 +5,16 @@
|
|||||||
"karsa-mistmere"
|
"karsa-mistmere"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"key",
|
"next",
|
||||||
"forward"
|
"forward",
|
||||||
|
"direction",
|
||||||
|
"east",
|
||||||
|
"turn",
|
||||||
|
"corner"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows"
|
"arrows",
|
||||||
|
"navigation",
|
||||||
|
"gaming"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -7,10 +7,15 @@
|
|||||||
"danielbayley"
|
"danielbayley"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"key",
|
"next",
|
||||||
"forward"
|
"forward",
|
||||||
|
"direction",
|
||||||
|
"east",
|
||||||
|
"indicate turn"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows"
|
"arrows",
|
||||||
|
"navigation",
|
||||||
|
"gaming"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -5,16 +5,23 @@
|
|||||||
"karsa-mistmere"
|
"karsa-mistmere"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"keyboard",
|
|
||||||
"key",
|
|
||||||
"forward",
|
|
||||||
"caps lock",
|
"caps lock",
|
||||||
"capitals",
|
"capitals",
|
||||||
|
"keyboard",
|
||||||
|
"button",
|
||||||
"mac",
|
"mac",
|
||||||
"button"
|
"forward",
|
||||||
|
"direction",
|
||||||
|
"north",
|
||||||
|
"faster",
|
||||||
|
"speed",
|
||||||
|
"boost"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows",
|
"arrows",
|
||||||
"development"
|
"navigation",
|
||||||
|
"text",
|
||||||
|
"development",
|
||||||
|
"gaming"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -6,15 +6,21 @@
|
|||||||
"danielbayley"
|
"danielbayley"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"keyboard",
|
|
||||||
"key",
|
|
||||||
"forward",
|
|
||||||
"shift",
|
"shift",
|
||||||
|
"keyboard",
|
||||||
|
"button",
|
||||||
"mac",
|
"mac",
|
||||||
"button"
|
"capitalize",
|
||||||
|
"capitalise",
|
||||||
|
"forward",
|
||||||
|
"direction",
|
||||||
|
"north"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows",
|
"arrows",
|
||||||
"development"
|
"navigation",
|
||||||
|
"text",
|
||||||
|
"development",
|
||||||
|
"gaming"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -4,7 +4,6 @@
|
|||||||
"karsa-mistmere"
|
"karsa-mistmere"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"arrow",
|
|
||||||
"filter",
|
"filter",
|
||||||
"sort",
|
"sort",
|
||||||
"ascending",
|
"ascending",
|
||||||
|
|||||||
@@ -4,7 +4,6 @@
|
|||||||
"karsa-mistmere"
|
"karsa-mistmere"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"arrow",
|
|
||||||
"filter",
|
"filter",
|
||||||
"sort",
|
"sort",
|
||||||
"descending",
|
"descending",
|
||||||
|
|||||||
@@ -4,7 +4,6 @@
|
|||||||
"karsa-mistmere"
|
"karsa-mistmere"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"arrow",
|
|
||||||
"filter",
|
"filter",
|
||||||
"sort",
|
"sort",
|
||||||
"ascending",
|
"ascending",
|
||||||
|
|||||||
@@ -5,10 +5,17 @@
|
|||||||
"ericfennis"
|
"ericfennis"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"direction"
|
"backwards",
|
||||||
|
"reverse",
|
||||||
|
"direction",
|
||||||
|
"south",
|
||||||
|
"sign",
|
||||||
|
"button"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows",
|
"arrows",
|
||||||
"shapes"
|
"navigation",
|
||||||
|
"shapes",
|
||||||
|
"gaming"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -10,6 +10,6 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<circle cx="12" cy="12" r="10" />
|
<circle cx="12" cy="12" r="10" />
|
||||||
<polyline points="8 12 12 16 16 12" />
|
<path d="M12 8v8" />
|
||||||
<line x1="12" x2="12" y1="8" y2="16" />
|
<path d="m8 12 4 4 4-4" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 327 B After Width: | Height: | Size: 296 B |
@@ -5,7 +5,10 @@
|
|||||||
"ericfennis"
|
"ericfennis"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
|
"backwards",
|
||||||
|
"reverse",
|
||||||
"direction",
|
"direction",
|
||||||
|
"south",
|
||||||
"download",
|
"download",
|
||||||
"expand",
|
"expand",
|
||||||
"fold",
|
"fold",
|
||||||
@@ -13,6 +16,7 @@
|
|||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows",
|
"arrows",
|
||||||
|
"navigation",
|
||||||
"files"
|
"files"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="12" x2="12" y1="21" y2="7" />
|
|
||||||
<polyline points="6 15 12 21 18 15" />
|
|
||||||
<path d="M19 3H5" />
|
<path d="M19 3H5" />
|
||||||
|
<path d="M12 21V7" />
|
||||||
|
<path d="m6 15 6 6 6-6" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 314 B After Width: | Height: | Size: 284 B |
@@ -4,9 +4,14 @@
|
|||||||
"danielbayley"
|
"danielbayley"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"direction"
|
"outwards",
|
||||||
|
"direction",
|
||||||
|
"south-west",
|
||||||
|
"diagonal"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows"
|
"arrows",
|
||||||
|
"navigation",
|
||||||
|
"maps"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<polyline points="8,22 2,22 2,16 " />
|
<path d="M2 12a10 10 0 1 1 10 10" />
|
||||||
<line x1="2" y1="22" x2="12" y2="12" />
|
<path d="m2 22 10-10" />
|
||||||
<path d="M2,12C2,6.5,6.5,2,12,2s10,4.5,10,10s-4.5,10-10,10" />
|
<path d="M8 22H2v-6" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 355 B After Width: | Height: | Size: 300 B |
21
icons/arrow-down-left-square.json
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"contributors": [
|
||||||
|
"danielbayley"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"direction",
|
||||||
|
"south-west",
|
||||||
|
"diagonal",
|
||||||
|
"sign",
|
||||||
|
"turn",
|
||||||
|
"keyboard",
|
||||||
|
"button"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"arrows",
|
||||||
|
"navigation",
|
||||||
|
"shapes",
|
||||||
|
"gaming"
|
||||||
|
]
|
||||||
|
}
|
||||||
15
icons/arrow-down-left-square.svg
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
stroke="currentColor"
|
||||||
|
stroke-width="2"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
>
|
||||||
|
<rect width="18" height="18" x="3" y="3" rx="2" />
|
||||||
|
<path d="m16 8-8 8" />
|
||||||
|
<path d="M16 16H8V8" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 312 B |
@@ -5,9 +5,12 @@
|
|||||||
"ericfennis"
|
"ericfennis"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"direction"
|
"direction",
|
||||||
|
"south-west",
|
||||||
|
"diagonal"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows"
|
"arrows",
|
||||||
|
"navigation"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -9,6 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="17" x2="7" y1="7" y2="17" />
|
<path d="M17 7 7 17" />
|
||||||
<polyline points="17 17 7 17 7 7" />
|
<path d="M17 17H7V7" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 288 B After Width: | Height: | Size: 260 B |
@@ -4,7 +4,6 @@
|
|||||||
"karsa-mistmere"
|
"karsa-mistmere"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"arrow",
|
|
||||||
"filter",
|
"filter",
|
||||||
"sort",
|
"sort",
|
||||||
"ascending"
|
"ascending"
|
||||||
|
|||||||
@@ -4,9 +4,14 @@
|
|||||||
"danielbayley"
|
"danielbayley"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"direction"
|
"outwards",
|
||||||
|
"direction",
|
||||||
|
"south-east",
|
||||||
|
"diagonal"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows"
|
"arrows",
|
||||||
|
"navigation",
|
||||||
|
"maps"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<polyline points="22,16 22,22 16,22 " />
|
<path d="M12 22a10 10 0 1 1 10-10" />
|
||||||
<line x1="22" y1="22" x2="12" y2="12" />
|
<path d="M22 22 12 12" />
|
||||||
<path d="M12,22C6.5,22,2,17.5,2,12S6.5,2,12,2s10,4.5,10,10" />
|
<path d="M22 16v6h-6" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 359 B After Width: | Height: | Size: 303 B |
21
icons/arrow-down-right-square.json
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"contributors": [
|
||||||
|
"danielbayley"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"direction",
|
||||||
|
"south-east",
|
||||||
|
"diagonal",
|
||||||
|
"sign",
|
||||||
|
"turn",
|
||||||
|
"keyboard",
|
||||||
|
"button"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"arrows",
|
||||||
|
"navigation",
|
||||||
|
"shapes",
|
||||||
|
"gaming"
|
||||||
|
]
|
||||||
|
}
|
||||||
15
icons/arrow-down-right-square.svg
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
stroke="currentColor"
|
||||||
|
stroke-width="2"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
>
|
||||||
|
<rect width="18" height="18" x="3" y="3" rx="2" />
|
||||||
|
<path d="m8 8 8 8" />
|
||||||
|
<path d="M16 8v8H8" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 310 B |
@@ -5,9 +5,12 @@
|
|||||||
"ericfennis"
|
"ericfennis"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"direction"
|
"direction",
|
||||||
|
"south-east",
|
||||||
|
"diagonal"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows"
|
"arrows",
|
||||||
|
"navigation"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -9,6 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="7" x2="17" y1="7" y2="17" />
|
<path d="m7 7 10 10" />
|
||||||
<polyline points="17 7 17 17 7 17" />
|
<path d="M17 7v10H7" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 289 B After Width: | Height: | Size: 260 B |
@@ -6,10 +6,18 @@
|
|||||||
"ericfennis"
|
"ericfennis"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"direction"
|
"backwards",
|
||||||
|
"reverse",
|
||||||
|
"direction",
|
||||||
|
"south",
|
||||||
|
"sign",
|
||||||
|
"keyboard",
|
||||||
|
"button"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows",
|
"arrows",
|
||||||
"shapes"
|
"navigation",
|
||||||
|
"shapes",
|
||||||
|
"gaming"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect width="18" height="18" x="3" y="3" rx="2" ry="2" />
|
<rect width="18" height="18" x="3" y="3" rx="2" />
|
||||||
<polyline points="8 12 12 16 16 12" />
|
<path d="M12 8v8" />
|
||||||
<line x1="12" x2="12" y1="8" y2="16" />
|
<path d="m8 12 4 4 4-4" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 351 B After Width: | Height: | Size: 313 B |
@@ -6,10 +6,15 @@
|
|||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"direction",
|
"direction",
|
||||||
|
"south",
|
||||||
|
"waypoint",
|
||||||
|
"location",
|
||||||
"step",
|
"step",
|
||||||
"into"
|
"into"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows"
|
"arrows",
|
||||||
|
"navigation",
|
||||||
|
"maps"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="12" x2="12" y1="2" y2="16" />
|
<path d="M12 2v14" />
|
||||||
<polyline points="19,9 12,16 5,9" />
|
<path d="m19 9-7 7-7-7" />
|
||||||
<circle cx="12" cy="21" r="1" />
|
<circle cx="12" cy="21" r="1" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 324 B After Width: | Height: | Size: 296 B |
@@ -5,8 +5,11 @@
|
|||||||
"ericfennis"
|
"ericfennis"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
|
"behind",
|
||||||
"direction",
|
"direction",
|
||||||
|
"south",
|
||||||
"download",
|
"download",
|
||||||
|
"save",
|
||||||
"git",
|
"git",
|
||||||
"version control",
|
"version control",
|
||||||
"pull",
|
"pull",
|
||||||
@@ -16,6 +19,7 @@
|
|||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows",
|
"arrows",
|
||||||
|
"navigation",
|
||||||
"files",
|
"files",
|
||||||
"development"
|
"development"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="12" x2="12" y1="17" y2="3" />
|
<path d="M12 17V3" />
|
||||||
<polyline points="6 11 12 17 18 11" />
|
<path d="m6 11 6 6 6-6" />
|
||||||
<path d="M19 21H5" />
|
<path d="M19 21H5" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 315 B After Width: | Height: | Size: 285 B |
@@ -5,10 +5,13 @@
|
|||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"bidirectional",
|
"bidirectional",
|
||||||
"direction",
|
"two-way",
|
||||||
|
"2-way",
|
||||||
"swap",
|
"swap",
|
||||||
"switch",
|
"switch",
|
||||||
"network",
|
"network",
|
||||||
|
"traffic",
|
||||||
|
"flow",
|
||||||
"mobile data",
|
"mobile data",
|
||||||
"internet",
|
"internet",
|
||||||
"sort",
|
"sort",
|
||||||
@@ -16,6 +19,7 @@
|
|||||||
"move"
|
"move"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows"
|
"arrows",
|
||||||
|
"navigation"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -5,9 +5,7 @@
|
|||||||
"csandman",
|
"csandman",
|
||||||
"karsa-mistmere"
|
"karsa-mistmere"
|
||||||
],
|
],
|
||||||
"aliases": ["sort-desc"],
|
|
||||||
"tags": [
|
"tags": [
|
||||||
"arrow",
|
|
||||||
"filter",
|
"filter",
|
||||||
"sort",
|
"sort",
|
||||||
"descending"
|
"descending"
|
||||||
@@ -16,5 +14,8 @@
|
|||||||
"text",
|
"text",
|
||||||
"layout",
|
"layout",
|
||||||
"arrows"
|
"arrows"
|
||||||
|
],
|
||||||
|
"aliases": [
|
||||||
|
"sort-desc"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -4,11 +4,11 @@
|
|||||||
"karsa-mistmere"
|
"karsa-mistmere"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"arrow",
|
|
||||||
"filter",
|
"filter",
|
||||||
"sort",
|
"sort",
|
||||||
"descending",
|
"descending",
|
||||||
"alphabetical"
|
"alphabetical",
|
||||||
|
"reverse"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"text",
|
"text",
|
||||||
|
|||||||
@@ -5,9 +5,13 @@
|
|||||||
"ericfennis"
|
"ericfennis"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"direction"
|
"backwards",
|
||||||
|
"reverse",
|
||||||
|
"direction",
|
||||||
|
"south"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows"
|
"arrows",
|
||||||
|
"navigation"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -9,6 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="12" x2="12" y1="5" y2="19" />
|
<path d="M12 5v14" />
|
||||||
<polyline points="19 12 12 19 5 12" />
|
<path d="m19 12-7 7-7-7" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 291 B After Width: | Height: | Size: 262 B |
@@ -5,10 +5,19 @@
|
|||||||
"ericfennis"
|
"ericfennis"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"direction"
|
"previous",
|
||||||
|
"back",
|
||||||
|
"direction",
|
||||||
|
"west",
|
||||||
|
"sign",
|
||||||
|
"turn",
|
||||||
|
"button",
|
||||||
|
"<-"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows",
|
"arrows",
|
||||||
"shapes"
|
"navigation",
|
||||||
|
"shapes",
|
||||||
|
"gaming"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -10,6 +10,6 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<circle cx="12" cy="12" r="10" />
|
<circle cx="12" cy="12" r="10" />
|
||||||
<polyline points="12 8 8 12 12 16" />
|
<path d="M16 12H8" />
|
||||||
<line x1="16" x2="8" y1="12" y2="12" />
|
<path d="m12 8-4 4 4 4" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 326 B After Width: | Height: | Size: 297 B |
@@ -5,12 +5,17 @@
|
|||||||
"ericfennis"
|
"ericfennis"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
|
"previous",
|
||||||
|
"back",
|
||||||
"direction",
|
"direction",
|
||||||
|
"west",
|
||||||
"expand",
|
"expand",
|
||||||
"fold",
|
"fold",
|
||||||
"horizontal"
|
"horizontal",
|
||||||
|
"<-|"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows"
|
"arrows",
|
||||||
|
"navigation"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="3" x2="17" y1="12" y2="12" />
|
<path d="m9 6-6 6 6 6" />
|
||||||
<polyline points="9 6 3 12 9 18" />
|
<path d="M3 12h14" />
|
||||||
<path d="M21 19V5" />
|
<path d="M21 19V5" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 312 B After Width: | Height: | Size: 284 B |
@@ -7,14 +7,18 @@
|
|||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"bidirectional",
|
"bidirectional",
|
||||||
"direction",
|
"two-way",
|
||||||
|
"2-way",
|
||||||
"swap",
|
"swap",
|
||||||
"switch",
|
"switch",
|
||||||
"transaction",
|
"transaction",
|
||||||
"reorder",
|
"reorder",
|
||||||
"move"
|
"move",
|
||||||
|
"<-",
|
||||||
|
"->"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows"
|
"arrows",
|
||||||
|
"navigation"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -6,10 +6,18 @@
|
|||||||
"ericfennis"
|
"ericfennis"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"direction"
|
"previous",
|
||||||
|
"back",
|
||||||
|
"direction",
|
||||||
|
"west",
|
||||||
|
"sign",
|
||||||
|
"keyboard",
|
||||||
|
"button",
|
||||||
|
"<-"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows",
|
"arrows",
|
||||||
|
"navigation",
|
||||||
"shapes"
|
"shapes"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect width="18" height="18" x="3" y="3" rx="2" ry="2" />
|
<rect width="18" height="18" x="3" y="3" rx="2" />
|
||||||
<polyline points="12 8 8 12 12 16" />
|
<path d="m12 8-4 4 4 4" />
|
||||||
<line x1="16" x2="8" y1="12" y2="12" />
|
<path d="M16 12H8" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 350 B After Width: | Height: | Size: 314 B |
@@ -5,12 +5,17 @@
|
|||||||
"ericfennis"
|
"ericfennis"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
|
"previous",
|
||||||
|
"back",
|
||||||
"direction",
|
"direction",
|
||||||
|
"west",
|
||||||
"collapse",
|
"collapse",
|
||||||
"fold",
|
"fold",
|
||||||
"horizontal"
|
"horizontal",
|
||||||
|
"|<-"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows"
|
"arrows",
|
||||||
|
"navigation"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="7" x2="21" y1="12" y2="12" />
|
|
||||||
<polyline points="13 6 7 12 13 18" />
|
|
||||||
<path d="M3 19V5" />
|
<path d="M3 19V5" />
|
||||||
|
<path d="m13 6-6 6 6 6" />
|
||||||
|
<path d="M7 12h14" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 313 B After Width: | Height: | Size: 284 B |
@@ -5,9 +5,14 @@
|
|||||||
"ericfennis"
|
"ericfennis"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"direction"
|
"previous",
|
||||||
|
"back",
|
||||||
|
"direction",
|
||||||
|
"west",
|
||||||
|
"<-"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows"
|
"arrows",
|
||||||
|
"navigation"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -9,6 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="19" x2="5" y1="12" y2="12" />
|
<path d="m12 19-7-7 7-7" />
|
||||||
<polyline points="12 19 5 12 12 5" />
|
<path d="M19 12H5" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 290 B After Width: | Height: | Size: 262 B |
@@ -5,10 +5,19 @@
|
|||||||
"ericfennis"
|
"ericfennis"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"direction"
|
"next",
|
||||||
|
"forward",
|
||||||
|
"direction",
|
||||||
|
"east",
|
||||||
|
"sign",
|
||||||
|
"turn",
|
||||||
|
"button",
|
||||||
|
"->"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows",
|
"arrows",
|
||||||
"shapes"
|
"navigation",
|
||||||
|
"shapes",
|
||||||
|
"gaming"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -10,6 +10,6 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<circle cx="12" cy="12" r="10" />
|
<circle cx="12" cy="12" r="10" />
|
||||||
<polyline points="12 16 16 12 12 8" />
|
<path d="M8 12h8" />
|
||||||
<line x1="8" x2="16" y1="12" y2="12" />
|
<path d="m12 16 4-4-4-4" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 327 B After Width: | Height: | Size: 297 B |
@@ -5,13 +5,18 @@
|
|||||||
"ericfennis"
|
"ericfennis"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
|
"next",
|
||||||
|
"forward",
|
||||||
"direction",
|
"direction",
|
||||||
|
"east",
|
||||||
"export",
|
"export",
|
||||||
"expand",
|
"expand",
|
||||||
"fold",
|
"fold",
|
||||||
"horizontal"
|
"horizontal",
|
||||||
|
"|->"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows"
|
"arrows",
|
||||||
|
"navigation"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="21" x2="7" y1="12" y2="12" />
|
|
||||||
<polyline points="15 18 21 12 15 6" />
|
|
||||||
<path d="M3 5v14" />
|
<path d="M3 5v14" />
|
||||||
|
<path d="M21 12H7" />
|
||||||
|
<path d="m15 18 6-6-6-6" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 314 B After Width: | Height: | Size: 285 B |
@@ -5,14 +5,18 @@
|
|||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"bidirectional",
|
"bidirectional",
|
||||||
"direction",
|
"two-way",
|
||||||
|
"2-way",
|
||||||
"swap",
|
"swap",
|
||||||
"switch",
|
"switch",
|
||||||
"transaction",
|
"transaction",
|
||||||
"reorder",
|
"reorder",
|
||||||
"move"
|
"move",
|
||||||
|
"<-",
|
||||||
|
"->"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows"
|
"arrows",
|
||||||
|
"navigation"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -6,10 +6,18 @@
|
|||||||
"ericfennis"
|
"ericfennis"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"direction"
|
"next",
|
||||||
|
"forward",
|
||||||
|
"direction",
|
||||||
|
"west",
|
||||||
|
"sign",
|
||||||
|
"keyboard",
|
||||||
|
"button",
|
||||||
|
"->"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows",
|
"arrows",
|
||||||
|
"navigation",
|
||||||
"shapes"
|
"shapes"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect width="18" height="18" x="3" y="3" rx="2" ry="2" />
|
<rect width="18" height="18" x="3" y="3" rx="2" />
|
||||||
<polyline points="12,16 16,12 12,8" />
|
<path d="M8 12h8" />
|
||||||
<line x1="8" x2="16" y1="12" y2="12" />
|
<path d="m12 16 4-4-4-4" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 351 B After Width: | Height: | Size: 314 B |
@@ -5,19 +5,22 @@
|
|||||||
"ericfennis"
|
"ericfennis"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"keyboard",
|
"next",
|
||||||
"key",
|
"forward",
|
||||||
"tab",
|
|
||||||
"mac",
|
|
||||||
"button",
|
|
||||||
"indent",
|
|
||||||
"direction",
|
"direction",
|
||||||
|
"east",
|
||||||
|
"tab",
|
||||||
|
"keyboard",
|
||||||
|
"mac",
|
||||||
|
"indent",
|
||||||
"collapse",
|
"collapse",
|
||||||
"fold",
|
"fold",
|
||||||
"horizontal"
|
"horizontal",
|
||||||
|
"->|"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows",
|
"arrows",
|
||||||
|
"navigation",
|
||||||
"development"
|
"development"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="17" x2="3" y1="12" y2="12" />
|
<path d="M17 12H3" />
|
||||||
<polyline points="11 18 17 12 11 6" />
|
<path d="m11 18 6-6-6-6" />
|
||||||
<path d="M21 5v14" />
|
<path d="M21 5v14" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 315 B After Width: | Height: | Size: 286 B |
@@ -5,9 +5,14 @@
|
|||||||
"ericfennis"
|
"ericfennis"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"direction"
|
"forward",
|
||||||
|
"next",
|
||||||
|
"direction",
|
||||||
|
"east",
|
||||||
|
"->"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"arrows"
|
"arrows",
|
||||||
|
"navigation"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -9,6 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="5" x2="19" y1="12" y2="12" />
|
<path d="M5 12h14" />
|
||||||
<polyline points="12 5 19 12 12 19" />
|
<path d="m12 5 7 7-7 7" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 291 B After Width: | Height: | Size: 261 B |
@@ -4,7 +4,6 @@
|
|||||||
"karsa-mistmere"
|
"karsa-mistmere"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"arrow",
|
|
||||||
"filter",
|
"filter",
|
||||||
"sort",
|
"sort",
|
||||||
"ascending",
|
"ascending",
|
||||||
|
|||||||
@@ -4,7 +4,6 @@
|
|||||||
"karsa-mistmere"
|
"karsa-mistmere"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"arrow",
|
|
||||||
"filter",
|
"filter",
|
||||||
"sort",
|
"sort",
|
||||||
"descending",
|
"descending",
|
||||||
|
|||||||