diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..63b4b68 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) [year] [fullname] + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..6d3f665 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +WIP \ No newline at end of file diff --git a/openv0_server/.env b/openv0_server/.env new file mode 100644 index 0000000..98a3df5 --- /dev/null +++ b/openv0_server/.env @@ -0,0 +1,7 @@ +OPENAI_API_KEY = "YOUR_API_KEY_HERE" +OPENAI_MODEL = "gpt-4" + +CONTEXT_TOKENS_PER_LIBRARY_COMPONENT_LIMIT = 950 + +REACT_WEBAPP_DIR = "../openv0_vitereact" +REACT_WEBAP_COMPONENT_PING_INTERVAL_MS = 5000 \ No newline at end of file diff --git a/openv0_server/.gitignore b/openv0_server/.gitignore new file mode 100644 index 0000000..b512c09 --- /dev/null +++ b/openv0_server/.gitignore @@ -0,0 +1 @@ +node_modules \ No newline at end of file diff --git a/openv0_server/README.md b/openv0_server/README.md new file mode 100644 index 0000000..6d3f665 --- /dev/null +++ b/openv0_server/README.md @@ -0,0 +1 @@ +WIP \ No newline at end of file diff --git a/openv0_server/_test_modules.js b/openv0_server/_test_modules.js new file mode 100644 index 0000000..2d82b41 --- /dev/null +++ b/openv0_server/_test_modules.js @@ -0,0 +1,205 @@ + + +/* +const { LocalIndex } = require('vectra') +const index = new LocalIndex('vectordb_lucide') +async function db_vectra_build(){ + const lucide_with_embeddings = require(`./library/lucide_with_embeddings_dump.json`) + + if (!await index.isIndexCreated()) { + await index.createIndex(); + } + for (let e of lucide_with_embeddings){ + console.log(e.name) + await index.insertItem({ + vector: e.embedding, + metadata: { name: e.name } + }) + } +} +db_vectra_build() +*/ + +/* +const { LocalIndex } = require('vectra') +const index = new LocalIndex('vectordb_lucide') +async function db_vectra_query_test(){ + const lucide_with_embeddings = require(`./library/lucide_with_embeddings_dump.json`) + + const example = lucide_with_embeddings[500] + console.log(`> ${example.name}`) + const results = await index.queryItems( example.embedding , 6); + console.dir(results.slice(1,).map(e=>e.item.metadata) ) +} +db_vectra_query_test() +*/ + + +/* +const db_shadcn = require(`./modules/db/shadcn.js`) +const db_lucide = require(`./modules/db/lucide.js`) + + +async function test(){ + await db_shadcn.build() + // await db_lucide.build() + // await db_lucide.embeddings() //<------- calls ada-002 in batch ! +} +test() +*/ + + + +/* +const component_design_task = require(`./modules/multipass/component_design_task.js`) +async function test(){ + const queries = [ + `a tweet UI`, + `a pricing page for a SaaS`, + `a component that displays a simple paragraph`, + `a cookie consent banner`, + `a table of financial invoices`, + ] + + console.dir( + ( + await component_design_task.run({ + query: queries[0], + }) + ), + {depth:null} + ) + +} +test() +*/ + + +/* +const rag_icons = require(`./modules/multipass/rag_icons.js`) +async function test(){ + console.dir( + ( + await rag_icons.run({ + icons: [`cookies` , `new notification`, `friend request`], + }) + ), + {depth:null} + ) + +} +test() +*/ + +/* +const rag_library_components = require(`./modules/multipass/rag_library_components.js`) +async function test(){ + console.dir( + ( + await rag_library_components.run({ + components: [`Avatar` , `Button`], + }) + ), + {depth:null} + ) + +} +test() +*/ + +/* +const context_builder = require(`./modules/multipass/context_builder.js`) +async function test(){ + console.log( + JSON.stringify( + await context_builder.run({ + icons: [`checkmark`], + library_components: [ {name: `Card`} , {name: `Button`} ], + }) + ) + ) + +} +test() +*/ + + + + + +/* +const design_task = require(`./modules/multipass/design_task.js`) +const context_builder = require(`./modules/multipass/context_builder.js`) +const generate_component = require(`./modules/multipass/generate_component.js`) +async function test(){ + + + const task = await design_task.run({ + query: `a component that display an example Lorem Ipsum paragraph (write it)` + }) + console.dir(task) + + + + const task = { + name: 'TweetUI', + description: { + by_user: 'a tweet UI component', + by_llm: "Design a new React component that's styled in a similar fashion to a tweet on Twitter. It should include a user profile picture (Avatar), the user's name, the tweet text, a timestamp, and options for reply, retweet, like, and share a tweet. It should also show the number of replies, retweets, and likes. All the information will be passed via props." + }, + icons: [ 'reply', 'retweet', 'heart', 'share' ], + library_components: [ + { name: 'Avatar', usage: "To display the user's profile picture." }, + { + name: 'Card', + usage: 'To structure and organize the tweet information.' + }, + { + name: 'Button', + usage: 'To create interactive reply, retweet, like, and share buttons.' + }, + { + name: 'Label', + usage: 'To give more information about displayed data such as number of replies, retweets, or likes.' + } + ] + } + + + const context = await context_builder.run(task) + // console.dir(context) + const generated = await generate_component.run({task,context}) + + +} +test() +*/ + + + + + + + + +/* +const generate = require(`./generate.js`) +async function test(){ + + + + await generate.new_component({ + query: `A Notes app UI looks like Apple's, in a yellow theme color` + }) + + + await generate.iterate_component({ + componentId: `NotesApp_ts24v`, + query: `the left half of the layout should be at the bottom instead !`, + }) + + + +} +test() +*/ diff --git a/openv0_server/export_refresh.js b/openv0_server/export_refresh.js new file mode 100644 index 0000000..b02d585 --- /dev/null +++ b/openv0_server/export_refresh.js @@ -0,0 +1,8 @@ +// to rebuild components in webapp; +// ie after you delete components, run node refresh_webapp.js + +async function refresh(){ + const export_react = require(`./modules/export/react.js`) + await export_react.dump_webapp() +} +refresh() diff --git a/openv0_server/generate.js b/openv0_server/generate.js new file mode 100644 index 0000000..662e21e --- /dev/null +++ b/openv0_server/generate.js @@ -0,0 +1,125 @@ +const fs = require('fs') + +const design_task = require(`./modules/multipass/design_task.js`) +const iterate_task = require(`./modules/multipass/iterate_task.js`) + +const context_builder = require(`./modules/multipass/context_builder.js`) +const generate_component = require(`./modules/multipass/generate_component.js`) + +const export_react = require(`./modules/export/react.js`) + +function _randomId(length) { + let result = ''; + const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; + const charactersLength = characters.length; + let counter = 0; + while (counter < length) { + result += characters.charAt(Math.floor(Math.random() * charactersLength)); + counter += 1; + } + return result; +} + +async function new_component(req) { + // {query} + + + const task = await design_task.run(req) // -> { name, description{by_user,by_llm}, icons, library_components } + const context = await context_builder.run(task) // -> context[] + const code = await generate_component.new_component({task,context}) // -> generated_code + + + /* + const task = { name:`Dummy` , description: {by_user: `dummy prompt`} } + const code = `import something_dummy;` + */ + + const componentId = task.name.replaceAll(' ','') + `_` + _randomId(5) + const timestamp = Date.now() + + await export_react.save_component({ + componentId, + slug: componentId.toLowerCase(), + name: task.name, + prompt: task.description.by_user, + timestamp, + version: `${timestamp}`, + code, + }) + await export_react.dump_webapp() + return { + componentId, + version: `${timestamp}`, + code, + } +} +async function iterate_component(req) { + // {query : `user_query` , componentId ,} + + // fetch last version of component + const components_list = fs.readdirSync(`./generated/components/${req.componentId}`).filter(e=>e.endsWith(`.json`)).sort() + const previous_component = { + ...JSON.parse( fs.readFileSync(`./generated/components/${req.componentId}/${components_list.slice(-1)[0]}`,'utf-8') ), + code: fs.readFileSync(`./generated/components/${req.componentId}/${components_list.slice(-1)[0].split('.')[0]}.tsx`,'utf-8'), + } + const first_component = { + ...JSON.parse( fs.readFileSync(`./generated/components/${req.componentId}/${components_list[0]}`,'utf-8') ), + code: fs.readFileSync(`./generated/components/${req.componentId}/${components_list[0].split('.')[0]}.tsx`,'utf-8'), + } + + const iteration_task = await iterate_task.run({ + query: req.query, + previous: { + name: previous_component.name, + description: first_component.prompt, + }, + }) // -> { name, description{by_user,by_llm}, icons, library_components } + + const task = { + name: previous_component.name, + ...iteration_task + } + const iteration_context = await context_builder.run(task) // -> context[] + const context = [ + ...iteration_context, + /* + { + role: `user`, + content: ``, + }, + */ + ] + + const code = await generate_component.iterate_component({ + task, + context, + previous: { + description: first_component.prompt, + code: previous_component.code, + }, + }) // -> generated_code + + const componentId = req.componentId + const timestamp = Date.now() + + await export_react.save_component({ + componentId, + slug: componentId.toLowerCase(), + name: task.name, + prompt: task.description.by_user, + timestamp, + version: `${timestamp}`, + code, + }) + await export_react.dump_webapp() + return { + componentId, + version: `${timestamp}`, + code, + } + +} +module.exports = { + new_component, + iterate_component, +}; diff --git a/openv0_server/generated/components/CodeSnippet_x7n4c/1695072566017.json b/openv0_server/generated/components/CodeSnippet_x7n4c/1695072566017.json new file mode 100644 index 0000000..616dc80 --- /dev/null +++ b/openv0_server/generated/components/CodeSnippet_x7n4c/1695072566017.json @@ -0,0 +1 @@ +{"componentId":"CodeSnippet_x7n4c","slug":"codesnippet_x7n4c","name":"CodeSnippet","prompt":"write a code snippet component with an example ffmpeg shell snippet and a description of what it does. text should be font-mono.\nmaybe some icon next to the code snippet block.\nadd a copy to clipboard button on the bottom right of the component.\nit should be a sleek, beautiful, well-arranged component;","timestamp":1695072566017,"version":"1695072566017","code":"import React, { useState, useCallback } from 'react';\nimport { Button } from \"@/components/ui/button\";\nimport {\n Card,\n CardContent,\n CardDescription,\n CardFooter,\n CardHeader,\n CardTitle,\n} from \"@/components/ui/card\";\nimport { Clipboard } from \"lucide-react\";\n\nconst CodeSnippet = () => {\n const [isCopied, setIsCopied] = useState(false);\n\n const exampleCode = `ffmpeg -i input.mp4 -vf \"scale=640:480\" output.mp4`;\n\n const handleCopy = useCallback(() => {\n navigator.clipboard\n .writeText(exampleCode)\n .then(() => setIsCopied(true))\n .catch(() => setHasError(true));\n }, []);\n\n return (\n \n \n FFmpeg shell snippet\n This code scales the video to 640x480 resolution\n \n \n
{exampleCode}
\n
\n \n \n \n
\n );\n};\n\nexport default CodeSnippet;"} \ No newline at end of file diff --git a/openv0_server/generated/components/CodeSnippet_x7n4c/1695072566017.tsx b/openv0_server/generated/components/CodeSnippet_x7n4c/1695072566017.tsx new file mode 100644 index 0000000..1d78174 --- /dev/null +++ b/openv0_server/generated/components/CodeSnippet_x7n4c/1695072566017.tsx @@ -0,0 +1,44 @@ +import React, { useState, useCallback } from 'react'; +import { Button } from "@/components/ui/button"; +import { + Card, + CardContent, + CardDescription, + CardFooter, + CardHeader, + CardTitle, +} from "@/components/ui/card"; +import { Clipboard } from "lucide-react"; + +const CodeSnippet = () => { + const [isCopied, setIsCopied] = useState(false); + + const exampleCode = `ffmpeg -i input.mp4 -vf "scale=640:480" output.mp4`; + + const handleCopy = useCallback(() => { + navigator.clipboard + .writeText(exampleCode) + .then(() => setIsCopied(true)) + .catch(() => setHasError(true)); + }, []); + + return ( + + + FFmpeg shell snippet + This code scales the video to 640x480 resolution + + +
{exampleCode}
+
+ + + +
+ ); +}; + +export default CodeSnippet; diff --git a/openv0_server/generated/components/CodeSnippet_x7n4c/1695072727264.json b/openv0_server/generated/components/CodeSnippet_x7n4c/1695072727264.json new file mode 100644 index 0000000..92ad8a2 --- /dev/null +++ b/openv0_server/generated/components/CodeSnippet_x7n4c/1695072727264.json @@ -0,0 +1 @@ +{"componentId":"CodeSnippet_x7n4c","slug":"codesnippet_x7n4c","name":"CodeSnippet","prompt":"add some icon to the left of the title","timestamp":1695072727264,"version":"1695072727264","code":"import React, { useState, useCallback } from 'react';\nimport { Button } from \"@/components/ui/button\";\nimport {\n Card,\n CardContent,\n CardDescription,\n CardFooter,\n CardHeader,\n CardTitle,\n} from \"@/components/ui/card\";\nimport { Clipboard, Code2 } from \"lucide-react\";\n\nconst CodeSnippet = () => {\n const [isCopied, setIsCopied] = useState(false);\n\n const exampleCode = `ffmpeg -i input.mp4 -vf \"scale=640:480\" output.mp4`;\n\n const handleCopy = useCallback(() => {\n navigator.clipboard\n .writeText(exampleCode)\n .then(() => setIsCopied(true))\n .catch(() => setHasError(true));\n }, []);\n\n return (\n \n \n \n \n FFmpeg shell snippet\n \n This code scales the video to 640x480 resolution\n \n \n
{exampleCode}
\n
\n \n \n \n
\n );\n};\n\nexport default CodeSnippet;"} \ No newline at end of file diff --git a/openv0_server/generated/components/CodeSnippet_x7n4c/1695072727264.tsx b/openv0_server/generated/components/CodeSnippet_x7n4c/1695072727264.tsx new file mode 100644 index 0000000..7bc630c --- /dev/null +++ b/openv0_server/generated/components/CodeSnippet_x7n4c/1695072727264.tsx @@ -0,0 +1,47 @@ +import React, { useState, useCallback } from 'react'; +import { Button } from "@/components/ui/button"; +import { + Card, + CardContent, + CardDescription, + CardFooter, + CardHeader, + CardTitle, +} from "@/components/ui/card"; +import { Clipboard, Code2 } from "lucide-react"; + +const CodeSnippet = () => { + const [isCopied, setIsCopied] = useState(false); + + const exampleCode = `ffmpeg -i input.mp4 -vf "scale=640:480" output.mp4`; + + const handleCopy = useCallback(() => { + navigator.clipboard + .writeText(exampleCode) + .then(() => setIsCopied(true)) + .catch(() => setHasError(true)); + }, []); + + return ( + + + + + FFmpeg shell snippet + + This code scales the video to 640x480 resolution + + +
{exampleCode}
+
+ + + +
+ ); +}; + +export default CodeSnippet; \ No newline at end of file diff --git a/openv0_server/generated/components/CodeSnippet_x7n4c/1695074919799.json b/openv0_server/generated/components/CodeSnippet_x7n4c/1695074919799.json new file mode 100644 index 0000000..d7881cb --- /dev/null +++ b/openv0_server/generated/components/CodeSnippet_x7n4c/1695074919799.json @@ -0,0 +1 @@ +{"componentId":"CodeSnippet_x7n4c","slug":"codesnippet_x7n4c","name":"CodeSnippet","prompt":"- black background on dark mode\n- slighly less vertical spacing between code snippet and surrounding elements","timestamp":1695074919799,"version":"1695074919799","code":"import React, { useState, useCallback } from 'react';\nimport { Button } from \"@/components/ui/button\";\nimport {\n Card,\n CardContent,\n CardDescription,\n CardFooter,\n CardHeader,\n CardTitle,\n} from \"@/components/ui/card\";\nimport { Clipboard, Code2 } from \"lucide-react\";\n\nconst CodeSnippet = () => {\n const [isCopied, setIsCopied] = useState(false);\n\n const exampleCode = `ffmpeg -i input.mp4 -vf \"scale=640:480\" output.mp4`;\n\n const handleCopy = useCallback(() => {\n navigator.clipboard\n .writeText(exampleCode)\n .then(() => setIsCopied(true))\n .catch(() => setHasError(true));\n }, []);\n\n return (\n \n \n \n \n FFmpeg shell snippet\n \n This code scales the video to 640x480 resolution\n \n \n
{exampleCode}
\n
\n \n \n \n
\n );\n};\n\nexport default CodeSnippet;"} \ No newline at end of file diff --git a/openv0_server/generated/components/CodeSnippet_x7n4c/1695074919799.tsx b/openv0_server/generated/components/CodeSnippet_x7n4c/1695074919799.tsx new file mode 100644 index 0000000..ea53240 --- /dev/null +++ b/openv0_server/generated/components/CodeSnippet_x7n4c/1695074919799.tsx @@ -0,0 +1,47 @@ +import React, { useState, useCallback } from 'react'; +import { Button } from "@/components/ui/button"; +import { + Card, + CardContent, + CardDescription, + CardFooter, + CardHeader, + CardTitle, +} from "@/components/ui/card"; +import { Clipboard, Code2 } from "lucide-react"; + +const CodeSnippet = () => { + const [isCopied, setIsCopied] = useState(false); + + const exampleCode = `ffmpeg -i input.mp4 -vf "scale=640:480" output.mp4`; + + const handleCopy = useCallback(() => { + navigator.clipboard + .writeText(exampleCode) + .then(() => setIsCopied(true)) + .catch(() => setHasError(true)); + }, []); + + return ( + + + + + FFmpeg shell snippet + + This code scales the video to 640x480 resolution + + +
{exampleCode}
+
+ + + +
+ ); +}; + +export default CodeSnippet; \ No newline at end of file diff --git a/openv0_server/generated/components/FileUpload_QE3bV/1695051330695.json b/openv0_server/generated/components/FileUpload_QE3bV/1695051330695.json new file mode 100644 index 0000000..536df31 --- /dev/null +++ b/openv0_server/generated/components/FileUpload_QE3bV/1695051330695.json @@ -0,0 +1 @@ +{"componentId":"FileUpload_QE3bV","slug":"fileupload_qe3bv","name":"FileUpload","prompt":"a upload file component","timestamp":1695051330695,"version":"1695051330695","code":"import React, { useState } from 'react';\nimport { Cloudy } from \"lucide-react\"; // import appropriate icons \nimport { Button } from \"@/components/ui/button\"; \nimport { Alert, AlertDescription, AlertTitle } from \"@/components/ui/alert\";\nimport { Progress } from \"@/components/ui/progress\";\n\n// This mock UI component doesn't upload file anywhere \n\nconst FileUpload: React.FC = () => {\n const [ selectedFile, setSelectedFile ] = useState(null);\n const [ loaded, setLoaded ] = useState(0);\n\n const checkMimeType=(event)=>{\n //getting file object\n let file = event.target.files[0] \n //define allow mime type\n const types = ['image/png', 'image/jpeg', 'image/gif']\n if (types.every(type => file.type !== type)) {\n alert(file.type+' is not a supported format\\n'+\n 'Supported formats: .png/.jpeg/.gif')\n return false;\n }\n return true;\n }\n\n const checkFileSize=(event)=>{\n let file = event.target.files[0]\n const size = 15000 //15KB\n if (file.size > size) {\n alert('Max size is ' + size/1000 + 'KB')\n return false\n } \n return true; \n }\n\n const handleSelectedFile = event => {\n if(checkMimeType(event) && checkFileSize(event)){ \n setSelectedFile(event.target.files[0]);\n setLoaded(0)\n }\n }\n\n return (\n
\n \n \n Upload file!\n \n Please select a file to upload.\n \n \n
\n \n {selectedFile && ({selectedFile.name})}\n
\n {loaded > 0 && \n
\n \n
\n } \n
\n \n
\n
\n );\n};\n\nexport default FileUpload;"} \ No newline at end of file diff --git a/openv0_server/generated/components/FileUpload_QE3bV/1695051330695.tsx b/openv0_server/generated/components/FileUpload_QE3bV/1695051330695.tsx new file mode 100644 index 0000000..bf382de --- /dev/null +++ b/openv0_server/generated/components/FileUpload_QE3bV/1695051330695.tsx @@ -0,0 +1,71 @@ +import React, { useState } from 'react'; +import { Cloudy } from "lucide-react"; // import appropriate icons +import { Button } from "@/components/ui/button"; +import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert"; +import { Progress } from "@/components/ui/progress"; + +// This mock UI component doesn't upload file anywhere + +const FileUpload: React.FC = () => { + const [ selectedFile, setSelectedFile ] = useState(null); + const [ loaded, setLoaded ] = useState(0); + + const checkMimeType=(event)=>{ + //getting file object + let file = event.target.files[0] + //define allow mime type + const types = ['image/png', 'image/jpeg', 'image/gif'] + if (types.every(type => file.type !== type)) { + alert(file.type+' is not a supported format\n'+ + 'Supported formats: .png/.jpeg/.gif') + return false; + } + return true; + } + + const checkFileSize=(event)=>{ + let file = event.target.files[0] + const size = 15000 //15KB + if (file.size > size) { + alert('Max size is ' + size/1000 + 'KB') + return false + } + return true; + } + + const handleSelectedFile = event => { + if(checkMimeType(event) && checkFileSize(event)){ + setSelectedFile(event.target.files[0]); + setLoaded(0) + } + } + + return ( +
+ + + Upload file! + + Please select a file to upload. + + +
+ + {selectedFile && ({selectedFile.name})} +
+ {loaded > 0 && +
+ +
+ } +
+ +
+
+ ); +}; + +export default FileUpload; \ No newline at end of file diff --git a/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695112220266.json b/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695112220266.json new file mode 100644 index 0000000..e143043 --- /dev/null +++ b/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695112220266.json @@ -0,0 +1 @@ +{"componentId":"FitnessCoachingPricingComponent_3IT9E","slug":"fitnesscoachingpricingcomponent_3it9e","name":"FitnessCoachingPricingComponent","prompt":"A sleek pricing component for a fitness coaching program subscription plans","timestamp":1695112220266,"version":"1695112220266","code":"import React from 'react'\nimport { Badge } from \"@/components/ui/badge\";\nimport { Button } from \"@/components/ui/button\";\nimport { Card, CardHeader, CardTitle, CardDescription, CardFooter, CardContent } from \"@/components/ui/card\";\nimport { Tag, DollarSign } from 'lucide-react'\n\nconst FitnessCoachingPricingComponent = () => {\n\n const plans = [\n {\n name: \"Basic\",\n features: [\n \"2 Personalized workouts per week\",\n \"Email support\",\n \"Monthly Progress checks\",\n ],\n price: \"49\"\n },\n {\n name: \"Pro\",\n features: [\n \"5 Personalized workouts per week\",\n \"Priority Email support\",\n \"Weekly Progress checks\",\n \"Nutritionist calls\",\n ],\n price: \"79\"\n },\n {\n name: \"Elite\",\n features: [\n \"Unlimited Personalized workouts\",\n \"24/7 Customer support\",\n \"Daily Progress checks\",\n \"Nutritionist calls\",\n \"Diet Plans, Supplement Guidance\",\n ],\n price: \"99\"\n },\n ]\n\n return (\n
\n {plans.map((plan, index) => (\n \n {plan.name}\n \n {plan.price} / month\n \n \n
    \n {plan.features.map((feature, index) => (\n
  • \n \n {feature}\n
  • \n ))}\n
\n
\n \n \n \n
\n ))}\n
\n )\n}\n\nexport default FitnessCoachingPricingComponent;"} \ No newline at end of file diff --git a/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695112220266.tsx b/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695112220266.tsx new file mode 100644 index 0000000..f33ab00 --- /dev/null +++ b/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695112220266.tsx @@ -0,0 +1,69 @@ +import React from 'react' +import { Badge } from "@/components/ui/badge"; +import { Button } from "@/components/ui/button"; +import { Card, CardHeader, CardTitle, CardDescription, CardFooter, CardContent } from "@/components/ui/card"; +import { Tag, DollarSign } from 'lucide-react' + +const FitnessCoachingPricingComponent = () => { + + const plans = [ + { + name: "Basic", + features: [ + "2 Personalized workouts per week", + "Email support", + "Monthly Progress checks", + ], + price: "49" + }, + { + name: "Pro", + features: [ + "5 Personalized workouts per week", + "Priority Email support", + "Weekly Progress checks", + "Nutritionist calls", + ], + price: "79" + }, + { + name: "Elite", + features: [ + "Unlimited Personalized workouts", + "24/7 Customer support", + "Daily Progress checks", + "Nutritionist calls", + "Diet Plans, Supplement Guidance", + ], + price: "99" + }, + ] + + return ( +
+ {plans.map((plan, index) => ( + + {plan.name} + + {plan.price} / month + + +
    + {plan.features.map((feature, index) => ( +
  • + + {feature} +
  • + ))} +
+
+ + + +
+ ))} +
+ ) +} + +export default FitnessCoachingPricingComponent; \ No newline at end of file diff --git a/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695112952284.json b/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695112952284.json new file mode 100644 index 0000000..434780a --- /dev/null +++ b/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695112952284.json @@ -0,0 +1 @@ +{"componentId":"FitnessCoachingPricingComponent_3IT9E","slug":"fitnesscoachingpricingcomponent_3it9e","name":"FitnessCoachingPricingComponent","prompt":"make cards sexier and the component sleeker and more beautiful please ❤️","timestamp":1695112952284,"version":"1695112952284","code":"import React from 'react'\nimport { Badge } from \"@/components/ui/badge\";\nimport { Button } from \"@/components/ui/button\";\nimport { Card, CardHeader, CardTitle, CardDescription, CardFooter, CardContent } from \"@/components/ui/card\";\nimport { Tag, DollarSign } from 'lucide-react'\nimport { CheckSquare, HeartPulse } from 'lucide-react';\n\nconst FitnessCoachingPricingComponent = () => {\n\n const plans = [\n {\n name: \"Basic\",\n features: [\n \"2 Personalized workouts per week\",\n \"Email support\",\n \"Monthly Progress checks\",\n ],\n price: \"49\"\n },\n {\n name: \"Pro\",\n features: [\n \"5 Personalized workouts per week\",\n \"Priority Email support\",\n \"Weekly Progress checks\",\n \"Nutritionist calls\",\n ],\n price: \"79\"\n },\n {\n name: \"Elite\",\n features: [\n \"Unlimited Personalized workouts\",\n \"24/7 Customer support\",\n \"Daily Progress checks\",\n \"Nutritionist calls\",\n \"Diet Plans, Supplement Guidance\",\n ],\n price: \"99\"\n },\n ]\n\n return (\n
\n {plans.map((plan, index) => (\n \n {plan.name}\n \n {plan.price}/ month\n \n \n
    \n {plan.features.map((feature, index) => (\n
  • \n {index === 0 ? : }\n {feature}\n
  • \n ))}\n
\n
\n \n \n \n
\n ))}\n
\n )\n}\n\nexport default FitnessCoachingPricingComponent;"} \ No newline at end of file diff --git a/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695112952284.tsx b/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695112952284.tsx new file mode 100644 index 0000000..79b7bdf --- /dev/null +++ b/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695112952284.tsx @@ -0,0 +1,70 @@ +import React from 'react' +import { Badge } from "@/components/ui/badge"; +import { Button } from "@/components/ui/button"; +import { Card, CardHeader, CardTitle, CardDescription, CardFooter, CardContent } from "@/components/ui/card"; +import { Tag, DollarSign } from 'lucide-react' +import { CheckSquare, HeartPulse } from 'lucide-react'; + +const FitnessCoachingPricingComponent = () => { + + const plans = [ + { + name: "Basic", + features: [ + "2 Personalized workouts per week", + "Email support", + "Monthly Progress checks", + ], + price: "49" + }, + { + name: "Pro", + features: [ + "5 Personalized workouts per week", + "Priority Email support", + "Weekly Progress checks", + "Nutritionist calls", + ], + price: "79" + }, + { + name: "Elite", + features: [ + "Unlimited Personalized workouts", + "24/7 Customer support", + "Daily Progress checks", + "Nutritionist calls", + "Diet Plans, Supplement Guidance", + ], + price: "99" + }, + ] + + return ( +
+ {plans.map((plan, index) => ( + + {plan.name} + + {plan.price}/ month + + +
    + {plan.features.map((feature, index) => ( +
  • + {index === 0 ? : } + {feature} +
  • + ))} +
+
+ + + +
+ ))} +
+ ) +} + +export default FitnessCoachingPricingComponent; \ No newline at end of file diff --git a/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695113383715.json b/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695113383715.json new file mode 100644 index 0000000..4a43224 --- /dev/null +++ b/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695113383715.json @@ -0,0 +1 @@ +{"componentId":"FitnessCoachingPricingComponent_3IT9E","slug":"fitnesscoachingpricingcomponent_3it9e","name":"FitnessCoachingPricingComponent","prompt":"redo the entire component, forget all you wrote so far;\nmake it minimalist; with beautiful gradients; and make it about a fitness nutrition program subscription; with plans that deliver food to the user.\nit should be super sleek and appealing to beautiful designers. i believe in you.","timestamp":1695113383715,"version":"1695113383715","code":"import React from 'react'\nimport { Button } from \"@/components/ui/button\";\nimport { Card, CardHeader, CardTitle, CardDescription, CardFooter, CardContent } from \"@/components/ui/card\";\nimport { Vegan, Carrot, Apple, Sandwich, Soup, Banana } from \"lucide-react\";\nimport { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from \"@/components/ui/tooltip\";\n\nconst FitnessNutritionPricingComponent = () => {\n\n const plans = [\n {\n name: \"Green Glow\",\n icon: ,\n features: [\n \"5 vegan meals daily\",\n \"Email support\",\n {\n feature: \"Weekly Progress checks\",\n tooltip: \"Get a progress check every week to keep you stay motivated and on track.\"\n }\n ],\n price: \"59\"\n },\n {\n name: \"Active Apple\",\n icon: ,\n features: [\n \"7 balanced meals daily\",\n \"Priority Email support\",\n {\n feature: \"Personal nutritionist calls\",\n tooltip: \"Need a quick consult? No worries! Your personal nutritionist is only a call away.\"\n },\n \"Diet Plans, Supplement Guidance\",\n ],\n price: \"89\"\n },\n {\n name: \"Fruity Fiesta\",\n icon: ,\n features: [\n \"Unlimited fruit-based meals\",\n \"24/7 Customer support\",\n {\n feature: \"Priority delivery\",\n tooltip: \"Get your meals delivered to your doorstep before 7AM everyday.\"\n },\n \"Diet Plans, Supplement Guidance\",\n ],\n price: \"109\"\n },\n ]\n\n return (\n
\n {plans.map((plan, index) => (\n \n \n {plan.price}/ month\n {plan.name}\n \n \n
    \n {plan.features.map((feature, index) => {\n if (typeof feature === \"string\") {\n return
  • {plan.icon}{feature}
  • \n } else {\n return (\n \n \n \n
  • {plan.icon}{feature.feature}
  • \n
    \n \n

    {feature.tooltip}

    \n
    \n
    \n
    \n )\n }\n })}\n
\n
\n \n \n \n
\n ))}\n
\n )\n}\n\nexport default FitnessNutritionPricingComponent;"} \ No newline at end of file diff --git a/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695113383715.tsx b/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695113383715.tsx new file mode 100644 index 0000000..9c145fd --- /dev/null +++ b/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695113383715.tsx @@ -0,0 +1,92 @@ +import React from 'react' +import { Button } from "@/components/ui/button"; +import { Card, CardHeader, CardTitle, CardDescription, CardFooter, CardContent } from "@/components/ui/card"; +import { Vegan, Carrot, Apple, Sandwich, Soup, Banana } from "lucide-react"; +import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "@/components/ui/tooltip"; + +const FitnessNutritionPricingComponent = () => { + + const plans = [ + { + name: "Green Glow", + icon: , + features: [ + "5 vegan meals daily", + "Email support", + { + feature: "Weekly Progress checks", + tooltip: "Get a progress check every week to keep you stay motivated and on track." + } + ], + price: "59" + }, + { + name: "Active Apple", + icon: , + features: [ + "7 balanced meals daily", + "Priority Email support", + { + feature: "Personal nutritionist calls", + tooltip: "Need a quick consult? No worries! Your personal nutritionist is only a call away." + }, + "Diet Plans, Supplement Guidance", + ], + price: "89" + }, + { + name: "Fruity Fiesta", + icon: , + features: [ + "Unlimited fruit-based meals", + "24/7 Customer support", + { + feature: "Priority delivery", + tooltip: "Get your meals delivered to your doorstep before 7AM everyday." + }, + "Diet Plans, Supplement Guidance", + ], + price: "109" + }, + ] + + return ( +
+ {plans.map((plan, index) => ( + + + {plan.price}/ month + {plan.name} + + +
    + {plan.features.map((feature, index) => { + if (typeof feature === "string") { + return
  • {plan.icon}{feature}
  • + } else { + return ( + + + +
  • {plan.icon}{feature.feature}
  • +
    + +

    {feature.tooltip}

    +
    +
    +
    + ) + } + })} +
+
+ + + +
+ ))} +
+ ) +} + +export default FitnessNutritionPricingComponent; \ No newline at end of file diff --git a/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695113577299.json b/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695113577299.json new file mode 100644 index 0000000..6b6bb4e --- /dev/null +++ b/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695113577299.json @@ -0,0 +1 @@ +{"componentId":"FitnessCoachingPricingComponent_3IT9E","slug":"fitnesscoachingpricingcomponent_3it9e","name":"FitnessCoachingPricingComponent","prompt":"- redo the entire component, forget all you wrote so far make it minimalist; with beautiful gradients\n- and make it about a fitness nutrition program subscription; with plans that deliver food to the user\n- it should be super sleek and appealing to beautiful designers. i believe in you","timestamp":1695113577299,"version":"1695113577299","code":"import React from \"react\";\nimport { Button } from \"@/components/ui/button\";\nimport {\n Card,\n CardContent,\n CardDescription,\n CardFooter,\n CardHeader,\n CardTitle,\n} from \"@/components/ui/card\";\nimport { Vegan, Apple, Banana } from \"lucide-react\";\nimport {\n Tooltip,\n TooltipContent,\n TooltipProvider,\n TooltipTrigger,\n} from \"@/components/ui/tooltip\";\n\nconst FitnessCoachingPricingComponent = () => {\n const plans = [\n {\n name: \"Green Fit\",\n icon: ,\n features: [\"5 Veggie Meals\", \"Fitness Trainer Access\", \"24/7 Health Support\", \"Daily Nutrition Counseling\"],\n price: \"$49\",\n },\n {\n name: \"Apple Active\",\n icon: ,\n features: [\"7 Balanced Meals\", \"Fitness Trainer Access\", \"24/7 Health Support\", \"Weekly Health Checkups\", \"Personal Nutritionist Calls\"],\n price: \"$69\",\n },\n {\n name: \"Vegan Vitality\",\n icon: ,\n features: [\"Unlimited Vegan Meals\", \"Fitness Trainer Access\", \"24/7 Health Support\", \"Weekly Health Checkups\",\n \"Personal Nutritionist Calls\", \"Priority Food Delivery\"],\n price: \"$99\",\n },\n ];\n\n return (\n
\n {plans.map((plan) => (\n \n \n {plan.icon}\n {plan.name}\n {plan.price}/mo\n \n \n {plan.features.map((feature) => (\n \n \n \n

\n \n {feature}\n

\n
\n \n

{feature}

\n
\n
\n
\n ))}\n
\n \n \n \n
\n ))}\n
\n );\n};\n\nexport default FitnessCoachingPricingComponent;"} \ No newline at end of file diff --git a/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695113577299.tsx b/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695113577299.tsx new file mode 100644 index 0000000..dd15603 --- /dev/null +++ b/openv0_server/generated/components/FitnessCoachingPricingComponent_3IT9E/1695113577299.tsx @@ -0,0 +1,77 @@ +import React from "react"; +import { Button } from "@/components/ui/button"; +import { + Card, + CardContent, + CardDescription, + CardFooter, + CardHeader, + CardTitle, +} from "@/components/ui/card"; +import { Vegan, Apple, Banana } from "lucide-react"; +import { + Tooltip, + TooltipContent, + TooltipProvider, + TooltipTrigger, +} from "@/components/ui/tooltip"; + +const FitnessCoachingPricingComponent = () => { + const plans = [ + { + name: "Green Fit", + icon: , + features: ["5 Veggie Meals", "Fitness Trainer Access", "24/7 Health Support", "Daily Nutrition Counseling"], + price: "$49", + }, + { + name: "Apple Active", + icon: , + features: ["7 Balanced Meals", "Fitness Trainer Access", "24/7 Health Support", "Weekly Health Checkups", "Personal Nutritionist Calls"], + price: "$69", + }, + { + name: "Vegan Vitality", + icon: , + features: ["Unlimited Vegan Meals", "Fitness Trainer Access", "24/7 Health Support", "Weekly Health Checkups", + "Personal Nutritionist Calls", "Priority Food Delivery"], + price: "$99", + }, + ]; + + return ( +
+ {plans.map((plan) => ( + + + {plan.icon} + {plan.name} + {plan.price}/mo + + + {plan.features.map((feature) => ( + + + +

+ + {feature} +

+
+ +

{feature}

+
+
+
+ ))} +
+ + + +
+ ))} +
+ ); +}; + +export default FitnessCoachingPricingComponent; \ No newline at end of file diff --git a/openv0_server/generated/components/MusicPlaylist_ggL6u/1695073051507.json b/openv0_server/generated/components/MusicPlaylist_ggL6u/1695073051507.json new file mode 100644 index 0000000..99c254b --- /dev/null +++ b/openv0_server/generated/components/MusicPlaylist_ggL6u/1695073051507.json @@ -0,0 +1 @@ +{"componentId":"MusicPlaylist_ggL6u","slug":"musicplaylist_ggl6u","name":"MusicPlaylist","prompt":"make a beautiful, sleek music playlist component with beautiful gradients\nuse Illmatic album tracks as placeholders","timestamp":1695073051507,"version":"1695073051507","code":"import React from 'react';\nimport { Button } from \"@/components/ui/button\";\nimport {\n Card,\n CardFooter,\n CardContent,\n} from \"@/components/ui/card\";\nimport {\n PlayCircle,\n PauseCircle,\n SkipForward,\n ArrowLeftCircle,\n } from \"lucide-react\";\n\nconst MusicPlaylist = () => {\n return (\n <>\n
\n
\n
\n
\n
\n \n \n

Illmatic Album

\n

1994 - Nas

\n
    \n {['N.Y. State of Mind', 'Life\\'s a Bitch', 'The World Is Yours', 'Halftime', 'Memory Lane (Sittin\\' in da Park)', 'One Love', 'One Time 4 Your Mind', 'Represent', 'It Ain\\t Hard to Tell'].map((track, index) => (\n
  • \n

    {track}

    \n
    \n \n \n \n \n
    \n
  • \n ))}\n
\n
\n \n

1994 Illmatic Album

\n
\n
\n
\n
\n
\n \n );\n}\n\nexport default MusicPlaylist;"} \ No newline at end of file diff --git a/openv0_server/generated/components/MusicPlaylist_ggL6u/1695073051507.tsx b/openv0_server/generated/components/MusicPlaylist_ggL6u/1695073051507.tsx new file mode 100644 index 0000000..d5e3d89 --- /dev/null +++ b/openv0_server/generated/components/MusicPlaylist_ggL6u/1695073051507.tsx @@ -0,0 +1,61 @@ +import React from 'react'; +import { Button } from "@/components/ui/button"; +import { + Card, + CardFooter, + CardContent, +} from "@/components/ui/card"; +import { + PlayCircle, + PauseCircle, + SkipForward, + ArrowLeftCircle, + } from "lucide-react"; + +const MusicPlaylist = () => { + return ( + <> +
+
+
+
+
+ + +

Illmatic Album

+

1994 - Nas

+
    + {['N.Y. State of Mind', 'Life\'s a Bitch', 'The World Is Yours', 'Halftime', 'Memory Lane (Sittin\' in da Park)', 'One Love', 'One Time 4 Your Mind', 'Represent', 'It Ain\t Hard to Tell'].map((track, index) => ( +
  • +

    {track}

    +
    + + + + +
    +
  • + ))} +
+
+ +

1994 Illmatic Album

+
+
+
+
+
+ + ); +} + +export default MusicPlaylist; \ No newline at end of file diff --git a/openv0_server/generated/components/MusicPlaylist_ggL6u/1695073353249.json b/openv0_server/generated/components/MusicPlaylist_ggL6u/1695073353249.json new file mode 100644 index 0000000..fa1ae5f --- /dev/null +++ b/openv0_server/generated/components/MusicPlaylist_ggL6u/1695073353249.json @@ -0,0 +1 @@ +{"componentId":"MusicPlaylist_ggL6u","slug":"musicplaylist_ggl6u","name":"MusicPlaylist","prompt":"- censor the swear words in the placeholder tracks\n- add a small avatar in the top left next to the album title\n- add some hover interactivity on the buttons\n- make sure the component is still sleek and beautiful","timestamp":1695073353249,"version":"1695073353249","code":"import React from 'react';\nimport { Avatar, AvatarFallback, AvatarImage } from \"@/components/ui/avatar\";\nimport {\n HoverCard,\n HoverCardContent,\n HoverCardTrigger,\n} from \"@/components/ui/hover-card\";\nimport { Button } from \"@/components/ui/button\";\nimport {\n Card,\n CardFooter,\n CardContent,\n} from \"@/components/ui/card\";\nimport {\n PlayCircle,\n PauseCircle,\n SkipForward,\n ArrowLeftCircle,\n } from \"lucide-react\";\n\nconst MusicPlaylist = () => {\n const tracks = ['N.Y. State of Mind', 'Life\\'s a B****', 'The World Is Yours', 'Halftime', 'Memory Lane (Sittin\\' in da Park)', 'One Love', 'One Time 4 Your Mind', 'Represent', 'It Ain\\'t Hard to Tell'];\n return (\n
\n
\n
\n
\n
\n \n \n
\n \n \n N\n \n
\n

Illmatic Album

\n

1994 - Nas

\n
\n
\n
    \n {tracks.map((track, index) => (\n
  • \n

    {track}

    \n
    \n \n \n \n \n Play\n \n \n \n \n \n Pause\n \n \n \n \n \n Skip Forward\n \n \n \n \n \n Go Back\n \n
    \n
  • \n ))}\n
\n
\n \n

1994 Illmatic Album

\n
\n
\n
\n
\n
\n );\n}\n\nexport default MusicPlaylist;"} \ No newline at end of file diff --git a/openv0_server/generated/components/MusicPlaylist_ggL6u/1695073353249.tsx b/openv0_server/generated/components/MusicPlaylist_ggL6u/1695073353249.tsx new file mode 100644 index 0000000..e6bac43 --- /dev/null +++ b/openv0_server/generated/components/MusicPlaylist_ggL6u/1695073353249.tsx @@ -0,0 +1,94 @@ +import React from 'react'; +import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; +import { + HoverCard, + HoverCardContent, + HoverCardTrigger, +} from "@/components/ui/hover-card"; +import { Button } from "@/components/ui/button"; +import { + Card, + CardFooter, + CardContent, +} from "@/components/ui/card"; +import { + PlayCircle, + PauseCircle, + SkipForward, + ArrowLeftCircle, + } from "lucide-react"; + +const MusicPlaylist = () => { + const tracks = ['N.Y. State of Mind', 'Life\'s a B****', 'The World Is Yours', 'Halftime', 'Memory Lane (Sittin\' in da Park)', 'One Love', 'One Time 4 Your Mind', 'Represent', 'It Ain\'t Hard to Tell']; + return ( +
+
+
+
+
+ + +
+ + + N + +
+

Illmatic Album

+

1994 - Nas

+
+
+
    + {tracks.map((track, index) => ( +
  • +

    {track}

    +
    + + + + + Play + + + + + + Pause + + + + + + Skip Forward + + + + + + Go Back + +
    +
  • + ))} +
+
+ +

1994 Illmatic Album

+
+
+
+
+
+ ); +} + +export default MusicPlaylist; \ No newline at end of file diff --git a/openv0_server/generated/components/MusicPlaylist_ggL6u/1695073861885.json b/openv0_server/generated/components/MusicPlaylist_ggL6u/1695073861885.json new file mode 100644 index 0000000..86147c9 --- /dev/null +++ b/openv0_server/generated/components/MusicPlaylist_ggL6u/1695073861885.json @@ -0,0 +1 @@ +{"componentId":"MusicPlaylist_ggL6u","slug":"musicplaylist_ggl6u","name":"MusicPlaylist","prompt":"looks good !\n- make the avatar slightly bigger, and use this as the avatar image : https://upload.wikimedia.org/wikipedia/en/2/27/IllmaticNas.jpg\n- put some extra space on top of the title\n- center the playlist in the component\n- make sure the component is still sleek and beautiful","timestamp":1695073861885,"version":"1695073861885","code":"import React from 'react';\nimport { Avatar, AvatarFallback, AvatarImage } from \"@/components/ui/avatar\";\nimport {\n HoverCard,\n HoverCardContent,\n HoverCardTrigger,\n} from \"@/components/ui/hover-card\";\nimport { Button } from \"@/components/ui/button\";\nimport {\n Card,\n CardFooter,\n CardContent,\n} from \"@/components/ui/card\";\nimport {\n PlayCircle,\n PauseCircle,\n SkipForward,\n ArrowLeftCircle,\n } from \"lucide-react\";\n\nconst MusicPlaylist = () => {\n const tracks = ['N.Y. State of Mind', 'Life\\'s a B****', 'The World Is Yours', 'Halftime', 'Memory Lane (Sittin\\' in da Park)', 'One Love', 'One Time 4 Your Mind', 'Represent', 'It Ain\\'t Hard to Tell'];\n return (\n
\n
\n
\n
\n
\n \n \n
\n \n \n N\n \n
\n

Illmatic Album

\n

1994 - Nas

\n
\n
\n
    \n {tracks.map((track, index) => (\n
  • \n

    {track}

    \n
    \n \n \n \n \n Play\n \n \n \n \n \n Pause\n \n \n \n \n \n Skip Forward\n \n \n \n \n \n Go Back\n \n
    \n
  • \n ))}\n
\n
\n \n

1994 Illmatic Album

\n
\n
\n
\n
\n
\n );\n}\n\nexport default MusicPlaylist;"} \ No newline at end of file diff --git a/openv0_server/generated/components/MusicPlaylist_ggL6u/1695073861885.tsx b/openv0_server/generated/components/MusicPlaylist_ggL6u/1695073861885.tsx new file mode 100644 index 0000000..6110a66 --- /dev/null +++ b/openv0_server/generated/components/MusicPlaylist_ggL6u/1695073861885.tsx @@ -0,0 +1,94 @@ +import React from 'react'; +import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; +import { + HoverCard, + HoverCardContent, + HoverCardTrigger, +} from "@/components/ui/hover-card"; +import { Button } from "@/components/ui/button"; +import { + Card, + CardFooter, + CardContent, +} from "@/components/ui/card"; +import { + PlayCircle, + PauseCircle, + SkipForward, + ArrowLeftCircle, + } from "lucide-react"; + +const MusicPlaylist = () => { + const tracks = ['N.Y. State of Mind', 'Life\'s a B****', 'The World Is Yours', 'Halftime', 'Memory Lane (Sittin\' in da Park)', 'One Love', 'One Time 4 Your Mind', 'Represent', 'It Ain\'t Hard to Tell']; + return ( +
+
+
+
+
+ + +
+ + + N + +
+

Illmatic Album

+

1994 - Nas

+
+
+
    + {tracks.map((track, index) => ( +
  • +

    {track}

    +
    + + + + + Play + + + + + + Pause + + + + + + Skip Forward + + + + + + Go Back + +
    +
  • + ))} +
+
+ +

1994 Illmatic Album

+
+
+
+
+
+ ); +} + +export default MusicPlaylist; \ No newline at end of file diff --git a/openv0_server/generated/components/SleekInvoicesTable_Hb7XN/1695062064273.json b/openv0_server/generated/components/SleekInvoicesTable_Hb7XN/1695062064273.json new file mode 100644 index 0000000..c14e04a --- /dev/null +++ b/openv0_server/generated/components/SleekInvoicesTable_Hb7XN/1695062064273.json @@ -0,0 +1 @@ +{"componentId":"SleekInvoicesTable_Hb7XN","slug":"sleekinvoicestable_hb7xn","name":"SleekInvoicesTable","prompt":"a sleek invoices table component","timestamp":1695062064273,"version":"1695062064273","code":"import React from 'react'\nimport { ArrowDownZA, ArrowDown01, Shuffle, ArrowUp01, ArrowDownAZ, ArrowUpAZ, View, Eye } from \"lucide-react\";\nimport {\n Popover,\n PopoverContent,\n PopoverTrigger,\n} from \"@/components/ui/popover\"\nimport {\n Table,\n TableBody,\n TableCaption,\n TableCell,\n TableHead,\n TableHeader,\n TableRow,\n} from \"@/components/ui/table\"\n\nconst data = [\n {\n \"invoice\": \"INV001\",\n \"customer\": \"John Doe\",\n \"date\": \"05/07/2021\",\n \"total\": \"$100\",\n \"status\": \"Paid\"\n },\n {\n \"invoice\": \"INV002\",\n \"customer\": \"Emma Smith\",\n \"date\": \"10/07/2021\",\n \"total\": \"$500\",\n \"status\": \"Pending\"\n },\n // add more data if needed\n]\n\nconst SleekInvoicesTable = () => {\n return (\n <>\n \n Recent Invoices\n \n \n Invoice \n Customer\n Date\n Total\n Status\n Actions\n \n \n \n {data.map((invoice, index) => (\n \n \n \n {invoice.invoice}\n \n \n

Invoice Details

\n

Customer: {invoice.customer}

\n

Date: {invoice.date}

\n

Total: {invoice.total}

\n
\n
\n {invoice.customer}\n {invoice.date}\n {invoice.total}\n {invoice.status}\n \n \n \n
\n ))}\n
\n
\n \n )\n}\n\nexport default SleekInvoicesTable"} \ No newline at end of file diff --git a/openv0_server/generated/components/SleekInvoicesTable_Hb7XN/1695062064273.tsx b/openv0_server/generated/components/SleekInvoicesTable_Hb7XN/1695062064273.tsx new file mode 100644 index 0000000..e10544a --- /dev/null +++ b/openv0_server/generated/components/SleekInvoicesTable_Hb7XN/1695062064273.tsx @@ -0,0 +1,80 @@ +import React from 'react' +import { ArrowDownZA, ArrowDown01, Shuffle, ArrowUp01, ArrowDownAZ, ArrowUpAZ, View, Eye } from "lucide-react"; +import { + Popover, + PopoverContent, + PopoverTrigger, +} from "@/components/ui/popover" +import { + Table, + TableBody, + TableCaption, + TableCell, + TableHead, + TableHeader, + TableRow, +} from "@/components/ui/table" + +const data = [ + { + "invoice": "INV001", + "customer": "John Doe", + "date": "05/07/2021", + "total": "$100", + "status": "Paid" + }, + { + "invoice": "INV002", + "customer": "Emma Smith", + "date": "10/07/2021", + "total": "$500", + "status": "Pending" + }, + // add more data if needed +] + +const SleekInvoicesTable = () => { + return ( + <> + + Recent Invoices + + + Invoice + Customer + Date + Total + Status + Actions + + + + {data.map((invoice, index) => ( + + + + {invoice.invoice} + + +

Invoice Details

+

Customer: {invoice.customer}

+

Date: {invoice.date}

+

Total: {invoice.total}

+
+
+ {invoice.customer} + {invoice.date} + {invoice.total} + {invoice.status} + + + +
+ ))} +
+
+ + ) +} + +export default SleekInvoicesTable \ No newline at end of file diff --git a/openv0_server/generated/components/TweetUI_sbLYP/1695049437653.json b/openv0_server/generated/components/TweetUI_sbLYP/1695049437653.json new file mode 100644 index 0000000..b9963ed --- /dev/null +++ b/openv0_server/generated/components/TweetUI_sbLYP/1695049437653.json @@ -0,0 +1 @@ +{"componentId":"TweetUI_sbLYP","slug":"tweetui_sblyp","name":"TweetUI","prompt":"a tweet UI","timestamp":1695049437653,"version":"1695049437653","code":"import React from 'react';\nimport { Avatar, AvatarFallback, AvatarImage } from \"@/components/ui/avatar\";\nimport { Button } from \"@/components/ui/button\";\nimport { Card, CardContent, CardFooter, CardHeader } from \"@/components/ui/card\";\nimport { HeartOff, Twitter, ThumbsUp, Repeat1, Share2, ReplyAll } from \"lucide-react\";\nimport { Link } from 'react-router-dom';\n\nconst TweetUI: React.FC = () => {\n return (\n \n \n \n \n UN\n \n
\n Username\n

@userhandle

\n
\n
\n \n

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Placeat impedit voluptatibus reiciendis magni ratione laborum nobis officiis architecto, modi aspernatur?

\n
\n \n \n \n \n \n \n
\n )\n}\n\nexport default TweetUI;"} \ No newline at end of file diff --git a/openv0_server/generated/components/TweetUI_sbLYP/1695049437653.tsx b/openv0_server/generated/components/TweetUI_sbLYP/1695049437653.tsx new file mode 100644 index 0000000..402030b --- /dev/null +++ b/openv0_server/generated/components/TweetUI_sbLYP/1695049437653.tsx @@ -0,0 +1,46 @@ +import React from 'react'; +import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; +import { Button } from "@/components/ui/button"; +import { Card, CardContent, CardFooter, CardHeader } from "@/components/ui/card"; +import { HeartOff, Twitter, ThumbsUp, Repeat1, Share2, ReplyAll } from "lucide-react"; +import { Link } from 'react-router-dom'; + +const TweetUI: React.FC = () => { + return ( + + + + + UN + +
+ Username +

@userhandle

+
+
+ +

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Placeat impedit voluptatibus reiciendis magni ratione laborum nobis officiis architecto, modi aspernatur?

+
+ + + + + + +
+ ) +} + +export default TweetUI; \ No newline at end of file diff --git a/openv0_server/generated/components/TweetUI_sbLYP/1695134457266.json b/openv0_server/generated/components/TweetUI_sbLYP/1695134457266.json new file mode 100644 index 0000000..236d599 --- /dev/null +++ b/openv0_server/generated/components/TweetUI_sbLYP/1695134457266.json @@ -0,0 +1 @@ +{"componentId":"TweetUI_sbLYP","slug":"tweetui_sblyp","name":"TweetUI","prompt":"- black background on dark mode\n- tooltips when hovering over buttons\n- replace the like icon to a heart, not dislike button\n- make sure the component is sleek and beautiful","timestamp":1695134457266,"version":"1695134457266","code":"import React from 'react';\nimport { Avatar, AvatarFallback, AvatarImage } from \"@/components/ui/avatar\";\nimport { Button } from \"@/components/ui/button\";\nimport { Switch } from \"@/components/ui/switch\";\nimport { Tooltip, TooltipContent, TooltipTrigger, TooltipProvider } from \"@/components/ui/tooltip\";\nimport { Heart, Twitter } from \"lucide-react\";\nimport { Link } from 'react-router-dom';\n\nconst TweetUI: React.FC = () => {\n const handleSwitchChange = (checked: boolean) => {\n console.log(checked)\n }\n \n return (\n
\n
\n \n \n UN\n \n
\n Username\n @userhandle\n
\n \n \n \n \n \n \n

Add to Favorites

\n
\n
\n
\n
\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Labore, doloribus, dolorem iusto dolorum longe aliquam.

\n
\n \n \n \n \n \n \n

Reply to tweet

\n
\n
\n
\n \n \n \n \n \n \n

Retweet

\n
\n
\n
\n \n \n \n \n \n \n

Share this tweet

\n
\n
\n
\n
\n
\n )\n}\n\nexport default TweetUI;"} \ No newline at end of file diff --git a/openv0_server/generated/components/TweetUI_sbLYP/1695134457266.tsx b/openv0_server/generated/components/TweetUI_sbLYP/1695134457266.tsx new file mode 100644 index 0000000..520c534 --- /dev/null +++ b/openv0_server/generated/components/TweetUI_sbLYP/1695134457266.tsx @@ -0,0 +1,75 @@ +import React from 'react'; +import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; +import { Button } from "@/components/ui/button"; +import { Switch } from "@/components/ui/switch"; +import { Tooltip, TooltipContent, TooltipTrigger, TooltipProvider } from "@/components/ui/tooltip"; +import { Heart, Twitter } from "lucide-react"; +import { Link } from 'react-router-dom'; + +const TweetUI: React.FC = () => { + const handleSwitchChange = (checked: boolean) => { + console.log(checked) + } + + return ( +
+
+ + + UN + +
+ Username + @userhandle +
+ + + + + + +

Add to Favorites

+
+
+
+
+

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Labore, doloribus, dolorem iusto dolorum longe aliquam.

+
+ + + + + + +

Reply to tweet

+
+
+
+ + + + + + +

Retweet

+
+
+
+ + + + + + +

Share this tweet

+
+
+
+
+
+ ) +} + +export default TweetUI; \ No newline at end of file diff --git a/openv0_server/generated/components/UserProfileCard_GZhzm/1695048530237.json b/openv0_server/generated/components/UserProfileCard_GZhzm/1695048530237.json new file mode 100644 index 0000000..9c4854a --- /dev/null +++ b/openv0_server/generated/components/UserProfileCard_GZhzm/1695048530237.json @@ -0,0 +1 @@ +{"componentId":"UserProfileCard_GZhzm","slug":"userprofilecard_gzhzm","name":"UserProfileCard","prompt":"a dating profile component","timestamp":1695048530237,"version":"1695048530237","code":"import React from 'react';\nimport { Avatar, AvatarFallback, AvatarImage } from \"@/components/ui/avatar\";\nimport { Button } from \"@/components/ui/button\";\nimport { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from \"@/components/ui/card\";\nimport { UserCircle2, MessageSquare, MapPin } from 'lucide-react';\n\nconst UserProfileCard = () => {\n return (\n \n
\n
\n \n \n U\n \n
\n
\n \n \n \n Jessica, 24\n \n \n \n New York, USA\n \n \n \n Hi, I'm Jessica. I love adventure and travelling. Looking for someone with the same interests!\n \n \n \n \n \n
\n
\n
\n );\n}\n\nexport default UserProfileCard;"} \ No newline at end of file diff --git a/openv0_server/generated/components/UserProfileCard_GZhzm/1695048530237.tsx b/openv0_server/generated/components/UserProfileCard_GZhzm/1695048530237.tsx new file mode 100644 index 0000000..d7fd4e4 --- /dev/null +++ b/openv0_server/generated/components/UserProfileCard_GZhzm/1695048530237.tsx @@ -0,0 +1,46 @@ +import React from 'react'; +import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; +import { Button } from "@/components/ui/button"; +import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "@/components/ui/card"; +import { UserCircle2, MessageSquare, MapPin } from 'lucide-react'; + +const UserProfileCard = () => { + return ( + +
+
+ + + U + +
+
+ + + + Jessica, 24 + + + + New York, USA + + + + Hi, I'm Jessica. I love adventure and travelling. Looking for someone with the same interests! + + + + + +
+
+
+ ); +} + +export default UserProfileCard; \ No newline at end of file diff --git a/openv0_server/generated/components/UserProfileCard_GZhzm/1695057517215.json b/openv0_server/generated/components/UserProfileCard_GZhzm/1695057517215.json new file mode 100644 index 0000000..caef38d --- /dev/null +++ b/openv0_server/generated/components/UserProfileCard_GZhzm/1695057517215.json @@ -0,0 +1 @@ +{"componentId":"UserProfileCard_GZhzm","slug":"userprofilecard_gzhzm","name":"UserProfileCard","prompt":"remove the avatar picture left block, and make it a small image next to the user name instead of the person icon that is there","timestamp":1695057517215,"version":"1695057517215","code":"import React from 'react';\nimport { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from \"@/components/ui/card\";\nimport { Button } from \"@/components/ui/button\";\nimport { UserCircle2, MessageSquare, MapPin } from 'lucide-react';\nimport { Avatar, AvatarFallback, AvatarImage } from \"@/components/ui/avatar\";\n\nconst UserProfileCard = () => {\n return (\n \n \n \n \n \n U\n \n
\n \n \n Jessica, 24\n \n \n \n \n New York, USA\n \n
\n
\n \n Hi, I'm Jessica. I love adventure and travelling. Looking for someone with the same interests!\n \n \n \n \n \n
\n
\n );\n}\n\nexport default UserProfileCard;"} \ No newline at end of file diff --git a/openv0_server/generated/components/UserProfileCard_GZhzm/1695057517215.tsx b/openv0_server/generated/components/UserProfileCard_GZhzm/1695057517215.tsx new file mode 100644 index 0000000..a4de961 --- /dev/null +++ b/openv0_server/generated/components/UserProfileCard_GZhzm/1695057517215.tsx @@ -0,0 +1,47 @@ +import React from 'react'; +import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "@/components/ui/card"; +import { Button } from "@/components/ui/button"; +import { UserCircle2, MessageSquare, MapPin } from 'lucide-react'; +import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; + +const UserProfileCard = () => { + return ( + + + + + + U + +
+ + + Jessica, 24 + + + + + New York, USA + +
+
+ + Hi, I'm Jessica. I love adventure and travelling. Looking for someone with the same interests! + + + + + +
+
+ ); +} + +export default UserProfileCard; \ No newline at end of file diff --git a/openv0_server/generated/components/UserProfileCard_GZhzm/1695057772474.json b/openv0_server/generated/components/UserProfileCard_GZhzm/1695057772474.json new file mode 100644 index 0000000..36468cd --- /dev/null +++ b/openv0_server/generated/components/UserProfileCard_GZhzm/1695057772474.json @@ -0,0 +1 @@ +{"componentId":"UserProfileCard_GZhzm","slug":"userprofilecard_gzhzm","name":"UserProfileCard","prompt":"add a button next to message that says \"like\" - in red , and center both buttons horizontally on their block","timestamp":1695057772474,"version":"1695057772474","code":"import React from 'react';\nimport { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from \"@/components/ui/card\";\nimport { Button } from \"@/components/ui/button\";\nimport { UserCircle2, MessageSquare, MapPin, Heart } from 'lucide-react';\nimport { Avatar, AvatarFallback, AvatarImage } from \"@/components/ui/avatar\";\n\nconst UserProfileCard = () => {\n return (\n \n \n \n \n \n U\n \n
\n \n \n Jessica, 24\n \n \n \n \n New York, USA\n \n
\n
\n \n Hi, I'm Jessica. I love adventure and travelling. Looking for someone with the same interests!\n \n \n \n \n \n
\n
\n );\n}\n\nexport default UserProfileCard;"} \ No newline at end of file diff --git a/openv0_server/generated/components/UserProfileCard_GZhzm/1695057772474.tsx b/openv0_server/generated/components/UserProfileCard_GZhzm/1695057772474.tsx new file mode 100644 index 0000000..2596504 --- /dev/null +++ b/openv0_server/generated/components/UserProfileCard_GZhzm/1695057772474.tsx @@ -0,0 +1,50 @@ +import React from 'react'; +import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "@/components/ui/card"; +import { Button } from "@/components/ui/button"; +import { UserCircle2, MessageSquare, MapPin, Heart } from 'lucide-react'; +import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; + +const UserProfileCard = () => { + return ( + + + + + + U + +
+ + + Jessica, 24 + + + + + New York, USA + +
+
+ + Hi, I'm Jessica. I love adventure and travelling. Looking for someone with the same interests! + + + + + +
+
+ ); +} + +export default UserProfileCard; \ No newline at end of file diff --git a/openv0_server/generated/components/UserProfileCard_GZhzm/1695057909792.json b/openv0_server/generated/components/UserProfileCard_GZhzm/1695057909792.json new file mode 100644 index 0000000..bf44468 --- /dev/null +++ b/openv0_server/generated/components/UserProfileCard_GZhzm/1695057909792.json @@ -0,0 +1 @@ +{"componentId":"UserProfileCard_GZhzm","slug":"userprofilecard_gzhzm","name":"UserProfileCard","prompt":"make the like button red (you put bg-red-lucide as a class, which doesnt exist. use a normal tailwind class you moron)","timestamp":1695057909792,"version":"1695057909792","code":"import React from 'react';\nimport { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from \"@/components/ui/card\";\nimport { Button } from \"@/components/ui/button\";\nimport { UserCircle2, MessageSquare, MapPin, Heart } from 'lucide-react';\nimport { Avatar, AvatarFallback, AvatarImage } from \"@/components/ui/avatar\";\n\nconst UserProfileCard = () => {\n return (\n \n \n \n \n \n U\n \n
\n \n \n Jessica, 24\n \n \n \n \n New York, USA\n \n
\n
\n \n Hi, I'm Jessica. I love adventure and travelling. Looking for someone with the same interests!\n \n \n \n \n \n
\n
\n );\n}\n\nexport default UserProfileCard;"} \ No newline at end of file diff --git a/openv0_server/generated/components/UserProfileCard_GZhzm/1695057909792.tsx b/openv0_server/generated/components/UserProfileCard_GZhzm/1695057909792.tsx new file mode 100644 index 0000000..6223855 --- /dev/null +++ b/openv0_server/generated/components/UserProfileCard_GZhzm/1695057909792.tsx @@ -0,0 +1,50 @@ +import React from 'react'; +import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "@/components/ui/card"; +import { Button } from "@/components/ui/button"; +import { UserCircle2, MessageSquare, MapPin, Heart } from 'lucide-react'; +import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; + +const UserProfileCard = () => { + return ( + + + + + + U + +
+ + + Jessica, 24 + + + + + New York, USA + +
+
+ + Hi, I'm Jessica. I love adventure and travelling. Looking for someone with the same interests! + + + + + +
+
+ ); +} + +export default UserProfileCard; \ No newline at end of file diff --git a/openv0_server/generated/components/UserProfileCard_GZhzm/1695074133769.json b/openv0_server/generated/components/UserProfileCard_GZhzm/1695074133769.json new file mode 100644 index 0000000..a8003a2 --- /dev/null +++ b/openv0_server/generated/components/UserProfileCard_GZhzm/1695074133769.json @@ -0,0 +1 @@ +{"componentId":"UserProfileCard_GZhzm","slug":"userprofilecard_gzhzm","name":"UserProfileCard","prompt":"- in dark mode, background should be black\n- name should be centered\n- write a big longer bio placeholder","timestamp":1695074133769,"version":"1695074133769","code":"import React from 'react';\nimport { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from \"@/components/ui/card\";\nimport { Button } from \"@/components/ui/button\";\nimport { UserCircle2, MessageSquare, MapPin, Heart } from 'lucide-react';\nimport { Avatar, AvatarFallback, AvatarImage } from \"@/components/ui/avatar\";\n\nconst UserProfileCard = () => {\n return (\n \n \n \n \n \n U\n \n
\n \n \n Jessica, 24\n \n \n \n \n New York, USA\n \n
\n
\n \n Hi there! My name is Jessica, and I'm passionate about adventure and travelling. Friends describe me as free-spirited and brave—always ready to face new challenges. I'm eager to connect with fellow travellers who share my enthusiasm for exploring.\n \n \n \n \n \n
\n
\n );\n}\n\nexport default UserProfileCard;"} \ No newline at end of file diff --git a/openv0_server/generated/components/UserProfileCard_GZhzm/1695074133769.tsx b/openv0_server/generated/components/UserProfileCard_GZhzm/1695074133769.tsx new file mode 100644 index 0000000..8a37665 --- /dev/null +++ b/openv0_server/generated/components/UserProfileCard_GZhzm/1695074133769.tsx @@ -0,0 +1,50 @@ +import React from 'react'; +import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "@/components/ui/card"; +import { Button } from "@/components/ui/button"; +import { UserCircle2, MessageSquare, MapPin, Heart } from 'lucide-react'; +import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; + +const UserProfileCard = () => { + return ( + + + + + + U + +
+ + + Jessica, 24 + + + + + New York, USA + +
+
+ + Hi there! My name is Jessica, and I'm passionate about adventure and travelling. Friends describe me as free-spirited and brave—always ready to face new challenges. I'm eager to connect with fellow travellers who share my enthusiasm for exploring. + + + + + +
+
+ ); +} + +export default UserProfileCard; \ No newline at end of file diff --git a/openv0_server/generated/export_ignore.txt b/openv0_server/generated/export_ignore.txt new file mode 100644 index 0000000..d694afe --- /dev/null +++ b/openv0_server/generated/export_ignore.txt @@ -0,0 +1,3 @@ +CodeSnippet_x7n4c +ExampleBadComponent_aBc99 1695074919799 +FitnessCoachingPricingComponent_3IT9E 1695113383715 diff --git a/openv0_server/index.js b/openv0_server/index.js new file mode 100644 index 0000000..5709e0c --- /dev/null +++ b/openv0_server/index.js @@ -0,0 +1,98 @@ +const express = require('express'); +const cors = require('cors'); +const fs = require('fs'); +const crypto = require('crypto'); + +require('dotenv').config(); +const app = express(); + +app.use(cors()); +app.use(express.json()); + +const generate = require(`./generate.js`) +const export_react = require(`./modules/export/react.js`) + +const EXPORT_PING_INTERVAL = parseInt(process.env.REACT_WEBAP_COMPONENT_PING_INTERVAL_MS) +let EXPORT_PING_STATUS = true + +async function export_validity_check(query){ + if ( !EXPORT_PING_STATUS ) { + console.dir({ + export_check_failed: { + component: query, + message: `did not received ping back from webapp after component export;\ngenerated component likely has issues (ie. syntax; nonexistent imports: ...)\nadding component to ./generated/export_ignore.txt and refreshing webapp exports` + } + }) + fs.appendFileSync(`./generated/export_ignore.txt`, `\n${query.componentId} ${query.version}`); + await export_react.dump_webapp() + } + +} + +async function exported_new_component(query){ + console.dir({ + export: { + component: query, + message: `exported new component to webapp; waiting for ping back in ${EXPORT_PING_INTERVAL/1e3} secs or will remove\n(in case generated component has issues)` + } + }) + EXPORT_PING_STATUS = false + await new Promise(r => setTimeout(r, EXPORT_PING_INTERVAL)); + export_validity_check(query) +} + +app.post(`/component/new`, async (req, res) => { + try{ + const response = await generate.new_component({ + query: req.body.query, + }) + exported_new_component({ + componentId: response.componentId, + version: response.version, + }) + res.json(response); + } catch(e) { + console.log(e) + } +}); + +app.post(`/component/iterate`, async (req, res) => { + try{ + const response = await generate.iterate_component({ + componentId: req.body.componentId, + query: req.body.query, + }) + exported_new_component({ + componentId: response.componentId, + version: response.version, + }) + res.json(response); + } catch(e) { + console.log(e) + } +}); + +// is used after generating and exporting a new component/iteration +// if ping not received within time interval, component is likely invalid (ie. hallucinated imports) +// and component is added to generated/export_ignore.txt, then webapp exports are refreshed +app.get(`/component/ping`, async (req, res) => { + /* + exported_new_component({ + componentId: req.query.componentId, + version: req.query.version, + }) + */ + console.dir({ + ping: `received ping from webapp; components loaded successfully :)`, + ...req.query, + }) + EXPORT_PING_STATUS = true + res.json({status:true}) +}); + +// Start the server +const port = process.env.PORT || 3000; +app.listen(port, () => { + console.log(`Server is running on port ${port} --------------------\n`); + export_react.dump_webapp() +}); diff --git a/openv0_server/library/.gitignore b/openv0_server/library/.gitignore new file mode 100644 index 0000000..dd6db11 --- /dev/null +++ b/openv0_server/library/.gitignore @@ -0,0 +1,3 @@ +_lucide +_ui +lucide_with_embeddings_dump.json \ No newline at end of file diff --git a/openv0_server/library/README.md b/openv0_server/library/README.md new file mode 100644 index 0000000..0dadcea --- /dev/null +++ b/openv0_server/library/README.md @@ -0,0 +1 @@ +the stuff here is used to build other stuff \ No newline at end of file diff --git a/openv0_server/library/lucide/accessibility.json b/openv0_server/library/lucide/accessibility.json new file mode 100644 index 0000000..2ee3a2c --- /dev/null +++ b/openv0_server/library/lucide/accessibility.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "disability", + "disabled", + "dda", + "wheelchair" + ], + "categories": [ + "accessibility", + "medical" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/activity-square.json b/openv0_server/library/lucide/activity-square.json new file mode 100644 index 0000000..fb1e213 --- /dev/null +++ b/openv0_server/library/lucide/activity-square.json @@ -0,0 +1,43 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "pulse", + "action", + "motion", + "movement", + "exercise", + "fitness", + "healthcare", + "heart rate monitor", + "vital signs", + "vitals", + "emergency room", + "er", + "intensive care", + "hospital", + "defibrillator", + "earthquake", + "siesmic", + "magnitude", + "richter scale", + "aftershock", + "tremor", + "shockwave", + "audio", + "waveform", + "synthesizer", + "synthesiser", + "music" + ], + "categories": [ + "medical", + "account", + "social", + "science", + "multimedia", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/activity.json b/openv0_server/library/lucide/activity.json new file mode 100644 index 0000000..0516649 --- /dev/null +++ b/openv0_server/library/lucide/activity.json @@ -0,0 +1,42 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "pulse", + "action", + "motion", + "movement", + "exercise", + "fitness", + "healthcare", + "heart rate monitor", + "vital signs", + "vitals", + "emergency room", + "er", + "intensive care", + "hospital", + "defibrillator", + "earthquake", + "siesmic", + "magnitude", + "richter scale", + "aftershock", + "tremor", + "shockwave", + "audio", + "waveform", + "synthesizer", + "synthesiser", + "music" + ], + "categories": [ + "medical", + "account", + "social", + "science", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/air-vent.json b/openv0_server/library/lucide/air-vent.json new file mode 100644 index 0000000..615bac2 --- /dev/null +++ b/openv0_server/library/lucide/air-vent.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "air conditioner", + "ac", + "central air", + "cooling", + "climate-control" + ], + "categories": [ + "home" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/airplay.json b/openv0_server/library/lucide/airplay.json new file mode 100644 index 0000000..b28b85a --- /dev/null +++ b/openv0_server/library/lucide/airplay.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "stream", + "cast", + "mirroring", + "screen", + "monitor" + ], + "categories": [ + "multimedia", + "connectivity", + "devices", + "brands" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/alarm-check.json b/openv0_server/library/lucide/alarm-check.json new file mode 100644 index 0000000..03b4a43 --- /dev/null +++ b/openv0_server/library/lucide/alarm-check.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "done", + "todo", + "tick", + "complete", + "task" + ], + "categories": [ + "devices", + "notifications", + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/alarm-clock-off.json b/openv0_server/library/lucide/alarm-clock-off.json new file mode 100644 index 0000000..4a7f920 --- /dev/null +++ b/openv0_server/library/lucide/alarm-clock-off.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "morning", + "turn-off" + ], + "categories": [ + "devices", + "notifications", + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/alarm-clock.json b/openv0_server/library/lucide/alarm-clock.json new file mode 100644 index 0000000..cf3e95f --- /dev/null +++ b/openv0_server/library/lucide/alarm-clock.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "lscheibel", + "johnletey", + "ericfennis", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "morning" + ], + "categories": [ + "devices", + "notifications", + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/alarm-minus.json b/openv0_server/library/lucide/alarm-minus.json new file mode 100644 index 0000000..9c825ab --- /dev/null +++ b/openv0_server/library/lucide/alarm-minus.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "remove" + ], + "categories": [ + "devices", + "notifications", + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/alarm-plus.json b/openv0_server/library/lucide/alarm-plus.json new file mode 100644 index 0000000..85d0d00 --- /dev/null +++ b/openv0_server/library/lucide/alarm-plus.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "add" + ], + "categories": [ + "devices", + "notifications", + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/album.json b/openv0_server/library/lucide/album.json new file mode 100644 index 0000000..c8cb4d0 --- /dev/null +++ b/openv0_server/library/lucide/album.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "csandman", + "mittalyashu" + ], + "tags": [ + "photo", + "book" + ], + "categories": [ + "photography", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/alert-circle.json b/openv0_server/library/lucide/alert-circle.json new file mode 100644 index 0000000..d7c94b6 --- /dev/null +++ b/openv0_server/library/lucide/alert-circle.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "warning", + "alert", + "danger", + "exclamation mark" + ], + "categories": [ + "notifications", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/alert-octagon.json b/openv0_server/library/lucide/alert-octagon.json new file mode 100644 index 0000000..d7c94b6 --- /dev/null +++ b/openv0_server/library/lucide/alert-octagon.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "warning", + "alert", + "danger", + "exclamation mark" + ], + "categories": [ + "notifications", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/alert-triangle.json b/openv0_server/library/lucide/alert-triangle.json new file mode 100644 index 0000000..60dc691 --- /dev/null +++ b/openv0_server/library/lucide/alert-triangle.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "warning", + "alert", + "danger", + "exclamation mark", + "linter" + ], + "categories": [ + "notifications", + "shapes", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-center-horizontal.json b/openv0_server/library/lucide/align-center-horizontal.json new file mode 100644 index 0000000..6b0b3c4 --- /dev/null +++ b/openv0_server/library/lucide/align-center-horizontal.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "items", + "flex", + "justify" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-center-vertical.json b/openv0_server/library/lucide/align-center-vertical.json new file mode 100644 index 0000000..6b0b3c4 --- /dev/null +++ b/openv0_server/library/lucide/align-center-vertical.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "items", + "flex", + "justify" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-center.json b/openv0_server/library/lucide/align-center.json new file mode 100644 index 0000000..ecdc1d8 --- /dev/null +++ b/openv0_server/library/lucide/align-center.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "text", + "alignment", + "center" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-end-horizontal.json b/openv0_server/library/lucide/align-end-horizontal.json new file mode 100644 index 0000000..d838448 --- /dev/null +++ b/openv0_server/library/lucide/align-end-horizontal.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "items", + "bottom", + "flex", + "justify" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-end-vertical.json b/openv0_server/library/lucide/align-end-vertical.json new file mode 100644 index 0000000..434ef9a --- /dev/null +++ b/openv0_server/library/lucide/align-end-vertical.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "items", + "right", + "flex", + "justify" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-horizontal-distribute-center.json b/openv0_server/library/lucide/align-horizontal-distribute-center.json new file mode 100644 index 0000000..36e01bc --- /dev/null +++ b/openv0_server/library/lucide/align-horizontal-distribute-center.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "r4lv", + "ericfennis" + ], + "tags": [ + "items", + "flex", + "justify", + "space", + "evenly", + "around" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-horizontal-distribute-end.json b/openv0_server/library/lucide/align-horizontal-distribute-end.json new file mode 100644 index 0000000..2693f50 --- /dev/null +++ b/openv0_server/library/lucide/align-horizontal-distribute-end.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "r4lv", + "ericfennis" + ], + "tags": [ + "right", + "items", + "flex", + "justify" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-horizontal-distribute-start.json b/openv0_server/library/lucide/align-horizontal-distribute-start.json new file mode 100644 index 0000000..2e92aaa --- /dev/null +++ b/openv0_server/library/lucide/align-horizontal-distribute-start.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "r4lv", + "ericfennis" + ], + "tags": [ + "left", + "items", + "flex", + "justify" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-horizontal-justify-center.json b/openv0_server/library/lucide/align-horizontal-justify-center.json new file mode 100644 index 0000000..e41ff67 --- /dev/null +++ b/openv0_server/library/lucide/align-horizontal-justify-center.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "center", + "items", + "flex", + "justify" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-horizontal-justify-end.json b/openv0_server/library/lucide/align-horizontal-justify-end.json new file mode 100644 index 0000000..9539950 --- /dev/null +++ b/openv0_server/library/lucide/align-horizontal-justify-end.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "right", + "items", + "flex", + "justify" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-horizontal-justify-start.json b/openv0_server/library/lucide/align-horizontal-justify-start.json new file mode 100644 index 0000000..4aed97a --- /dev/null +++ b/openv0_server/library/lucide/align-horizontal-justify-start.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "left", + "items", + "flex", + "justify" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-horizontal-space-around.json b/openv0_server/library/lucide/align-horizontal-space-around.json new file mode 100644 index 0000000..4c74903 --- /dev/null +++ b/openv0_server/library/lucide/align-horizontal-space-around.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "center", + "items", + "flex", + "justify", + "distribute", + "between" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-horizontal-space-between.json b/openv0_server/library/lucide/align-horizontal-space-between.json new file mode 100644 index 0000000..ca0eff3 --- /dev/null +++ b/openv0_server/library/lucide/align-horizontal-space-between.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "around", + "items", + "bottom", + "flex", + "justify" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-justify.json b/openv0_server/library/lucide/align-justify.json new file mode 100644 index 0000000..bd1087d --- /dev/null +++ b/openv0_server/library/lucide/align-justify.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "text", + "alignment", + "justified", + "menu", + "list" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-left.json b/openv0_server/library/lucide/align-left.json new file mode 100644 index 0000000..01a088d --- /dev/null +++ b/openv0_server/library/lucide/align-left.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "text", + "alignment", + "left", + "list" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-right.json b/openv0_server/library/lucide/align-right.json new file mode 100644 index 0000000..cba3a5a --- /dev/null +++ b/openv0_server/library/lucide/align-right.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "text", + "alignment", + "right" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-start-horizontal.json b/openv0_server/library/lucide/align-start-horizontal.json new file mode 100644 index 0000000..5e962c1 --- /dev/null +++ b/openv0_server/library/lucide/align-start-horizontal.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "top", + "items", + "flex", + "justify" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-start-vertical.json b/openv0_server/library/lucide/align-start-vertical.json new file mode 100644 index 0000000..4aed97a --- /dev/null +++ b/openv0_server/library/lucide/align-start-vertical.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "left", + "items", + "flex", + "justify" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-vertical-distribute-center.json b/openv0_server/library/lucide/align-vertical-distribute-center.json new file mode 100644 index 0000000..6cbaeb0 --- /dev/null +++ b/openv0_server/library/lucide/align-vertical-distribute-center.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "items", + "flex", + "justify", + "space", + "evenly", + "around" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-vertical-distribute-end.json b/openv0_server/library/lucide/align-vertical-distribute-end.json new file mode 100644 index 0000000..4532b93 --- /dev/null +++ b/openv0_server/library/lucide/align-vertical-distribute-end.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "bottom", + "items", + "flex", + "justify" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-vertical-distribute-start.json b/openv0_server/library/lucide/align-vertical-distribute-start.json new file mode 100644 index 0000000..5e962c1 --- /dev/null +++ b/openv0_server/library/lucide/align-vertical-distribute-start.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "top", + "items", + "flex", + "justify" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-vertical-justify-center.json b/openv0_server/library/lucide/align-vertical-justify-center.json new file mode 100644 index 0000000..4c74903 --- /dev/null +++ b/openv0_server/library/lucide/align-vertical-justify-center.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "center", + "items", + "flex", + "justify", + "distribute", + "between" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-vertical-justify-end.json b/openv0_server/library/lucide/align-vertical-justify-end.json new file mode 100644 index 0000000..fad1403 --- /dev/null +++ b/openv0_server/library/lucide/align-vertical-justify-end.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "bottom", + "items", + "flex", + "justify", + "distribute", + "between" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-vertical-justify-start.json b/openv0_server/library/lucide/align-vertical-justify-start.json new file mode 100644 index 0000000..7c92fff --- /dev/null +++ b/openv0_server/library/lucide/align-vertical-justify-start.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "top", + "items", + "flex", + "justify", + "distribute", + "between" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-vertical-space-around.json b/openv0_server/library/lucide/align-vertical-space-around.json new file mode 100644 index 0000000..4c74903 --- /dev/null +++ b/openv0_server/library/lucide/align-vertical-space-around.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "center", + "items", + "flex", + "justify", + "distribute", + "between" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/align-vertical-space-between.json b/openv0_server/library/lucide/align-vertical-space-between.json new file mode 100644 index 0000000..4c74903 --- /dev/null +++ b/openv0_server/library/lucide/align-vertical-space-between.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "center", + "items", + "flex", + "justify", + "distribute", + "between" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/ampersand.json b/openv0_server/library/lucide/ampersand.json new file mode 100644 index 0000000..e7a8536 --- /dev/null +++ b/openv0_server/library/lucide/ampersand.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "and", + "typography", + "operator", + "join", + "concatenate", + "code", + "&" + ], + "categories": [ + "text", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/ampersands.json b/openv0_server/library/lucide/ampersands.json new file mode 100644 index 0000000..4b671f5 --- /dev/null +++ b/openv0_server/library/lucide/ampersands.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "and", + "operator", + "then", + "code", + "&&" + ], + "categories": [ + "text", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/anchor.json b/openv0_server/library/lucide/anchor.json new file mode 100644 index 0000000..eb66097 --- /dev/null +++ b/openv0_server/library/lucide/anchor.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "ship" + ], + "categories": [ + "transportation", + "text", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/angry.json b/openv0_server/library/lucide/angry.json new file mode 100644 index 0000000..404ae92 --- /dev/null +++ b/openv0_server/library/lucide/angry.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "emoji", + "anger", + "face", + "emotion" + ], + "categories": [ + "emoji" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/annoyed.json b/openv0_server/library/lucide/annoyed.json new file mode 100644 index 0000000..6e3afba --- /dev/null +++ b/openv0_server/library/lucide/annoyed.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "emoji", + "nuisance", + "face", + "emotion" + ], + "categories": [ + "emoji" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/antenna.json b/openv0_server/library/lucide/antenna.json new file mode 100644 index 0000000..53af8e1 --- /dev/null +++ b/openv0_server/library/lucide/antenna.json @@ -0,0 +1,31 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "signal", + "connection", + "connectivity", + "tv", + "television", + "broadcast", + "live", + "frequency", + "tune", + "scan", + "channels", + "aerial", + "receiver", + "transmission", + "transducer", + "terrestrial", + "satellite", + "cable" + ], + "categories": [ + "devices", + "multimedia", + "communication" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/aperture.json b/openv0_server/library/lucide/aperture.json new file mode 100644 index 0000000..502644d --- /dev/null +++ b/openv0_server/library/lucide/aperture.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "camera", + "photo" + ], + "categories": [ + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/app-window.json b/openv0_server/library/lucide/app-window.json new file mode 100644 index 0000000..1d37e37 --- /dev/null +++ b/openv0_server/library/lucide/app-window.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "application", + "executable" + ], + "categories": [ + "design", + "files", + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/apple.json b/openv0_server/library/lucide/apple.json new file mode 100644 index 0000000..1bb1288 --- /dev/null +++ b/openv0_server/library/lucide/apple.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "fruit", + "food" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/archive-restore.json b/openv0_server/library/lucide/archive-restore.json new file mode 100644 index 0000000..ff6b227 --- /dev/null +++ b/openv0_server/library/lucide/archive-restore.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "unarchive", + "index", + "backup", + "box", + "storage", + "records" + ], + "categories": [ + "files", + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/archive-x.json b/openv0_server/library/lucide/archive-x.json new file mode 100644 index 0000000..1a6428c --- /dev/null +++ b/openv0_server/library/lucide/archive-x.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "index", + "backup", + "box", + "storage", + "records", + "junk" + ], + "categories": [ + "files", + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/archive.json b/openv0_server/library/lucide/archive.json new file mode 100644 index 0000000..bd82aa0 --- /dev/null +++ b/openv0_server/library/lucide/archive.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "index", + "backup", + "box", + "storage", + "records" + ], + "categories": [ + "files", + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/area-chart.json b/openv0_server/library/lucide/area-chart.json new file mode 100644 index 0000000..a3c7e7b --- /dev/null +++ b/openv0_server/library/lucide/area-chart.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "nstokoe" + ], + "tags": [ + "statistics", + "diagram", + "graph", + "area" + ], + "categories": [ + "charts" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/armchair.json b/openv0_server/library/lucide/armchair.json new file mode 100644 index 0000000..9a8be2a --- /dev/null +++ b/openv0_server/library/lucide/armchair.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "sofa", + "furniture", + "leisure", + "lounge", + "loveseat", + "couch" + ], + "categories": [ + "furniture" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-big-down-dash.json b/openv0_server/library/lucide/arrow-big-down-dash.json new file mode 100644 index 0000000..1eccd78 --- /dev/null +++ b/openv0_server/library/lucide/arrow-big-down-dash.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "backwards", + "reverse", + "slow", + "direction", + "south", + "download" + ], + "categories": [ + "arrows", + "navigation", + "gaming", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-big-down.json b/openv0_server/library/lucide/arrow-big-down.json new file mode 100644 index 0000000..93ccfd4 --- /dev/null +++ b/openv0_server/library/lucide/arrow-big-down.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "mittalyashu", + "danielbayley" + ], + "tags": [ + "backwards", + "reverse", + "direction", + "south" + ], + "categories": [ + "arrows", + "navigation", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-big-left-dash.json b/openv0_server/library/lucide/arrow-big-left-dash.json new file mode 100644 index 0000000..b70706a --- /dev/null +++ b/openv0_server/library/lucide/arrow-big-left-dash.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "previous", + "back", + "direction", + "west", + "turn", + "corner" + ], + "categories": [ + "arrows", + "navigation", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-big-left.json b/openv0_server/library/lucide/arrow-big-left.json new file mode 100644 index 0000000..8717e49 --- /dev/null +++ b/openv0_server/library/lucide/arrow-big-left.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "mittalyashu", + "ericfennis", + "danielbayley" + ], + "tags": [ + "previous", + "back", + "direction", + "west", + "indicate turn" + ], + "categories": [ + "arrows", + "navigation", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-big-right-dash.json b/openv0_server/library/lucide/arrow-big-right-dash.json new file mode 100644 index 0000000..13ff78e --- /dev/null +++ b/openv0_server/library/lucide/arrow-big-right-dash.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "next", + "forward", + "direction", + "east", + "turn", + "corner" + ], + "categories": [ + "arrows", + "navigation", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-big-right.json b/openv0_server/library/lucide/arrow-big-right.json new file mode 100644 index 0000000..63f1f83 --- /dev/null +++ b/openv0_server/library/lucide/arrow-big-right.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "mittalyashu", + "ericfennis", + "danielbayley" + ], + "tags": [ + "next", + "forward", + "direction", + "east", + "indicate turn" + ], + "categories": [ + "arrows", + "navigation", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-big-up-dash.json b/openv0_server/library/lucide/arrow-big-up-dash.json new file mode 100644 index 0000000..e13ab55 --- /dev/null +++ b/openv0_server/library/lucide/arrow-big-up-dash.json @@ -0,0 +1,27 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "caps lock", + "capitals", + "keyboard", + "button", + "mac", + "forward", + "direction", + "north", + "faster", + "speed", + "boost" + ], + "categories": [ + "arrows", + "navigation", + "text", + "development", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-big-up.json b/openv0_server/library/lucide/arrow-big-up.json new file mode 100644 index 0000000..603f7aa --- /dev/null +++ b/openv0_server/library/lucide/arrow-big-up.json @@ -0,0 +1,26 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "mittalyashu", + "danielbayley" + ], + "tags": [ + "shift", + "keyboard", + "button", + "mac", + "capitalize", + "capitalise", + "forward", + "direction", + "north" + ], + "categories": [ + "arrows", + "navigation", + "text", + "development", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-down-0-1.json b/openv0_server/library/lucide/arrow-down-0-1.json new file mode 100644 index 0000000..8b9f666 --- /dev/null +++ b/openv0_server/library/lucide/arrow-down-0-1.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "filter", + "sort", + "ascending", + "numerical" + ], + "categories": [ + "text", + "layout", + "arrows" + ], + "aliases": [ + "arrow-down-01" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-down-1-0.json b/openv0_server/library/lucide/arrow-down-1-0.json new file mode 100644 index 0000000..102dc64 --- /dev/null +++ b/openv0_server/library/lucide/arrow-down-1-0.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "filter", + "sort", + "descending", + "numerical" + ], + "categories": [ + "text", + "layout", + "arrows" + ], + "aliases": [ + "arrow-down-10" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-down-a-z.json b/openv0_server/library/lucide/arrow-down-a-z.json new file mode 100644 index 0000000..3f95924 --- /dev/null +++ b/openv0_server/library/lucide/arrow-down-a-z.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "filter", + "sort", + "ascending", + "alphabetical" + ], + "categories": [ + "text", + "layout", + "arrows" + ], + "aliases": [ + "arrow-down-az" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-down-circle.json b/openv0_server/library/lucide/arrow-down-circle.json new file mode 100644 index 0000000..67f8ddb --- /dev/null +++ b/openv0_server/library/lucide/arrow-down-circle.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "backwards", + "reverse", + "direction", + "south", + "sign", + "button" + ], + "categories": [ + "arrows", + "navigation", + "shapes", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-down-from-line.json b/openv0_server/library/lucide/arrow-down-from-line.json new file mode 100644 index 0000000..1c5099c --- /dev/null +++ b/openv0_server/library/lucide/arrow-down-from-line.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "backwards", + "reverse", + "direction", + "south", + "download", + "expand", + "fold", + "vertical" + ], + "categories": [ + "arrows", + "navigation", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-down-left-from-circle.json b/openv0_server/library/lucide/arrow-down-left-from-circle.json new file mode 100644 index 0000000..e99657e --- /dev/null +++ b/openv0_server/library/lucide/arrow-down-left-from-circle.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "outwards", + "direction", + "south-west", + "diagonal" + ], + "categories": [ + "arrows", + "navigation", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-down-left-square.json b/openv0_server/library/lucide/arrow-down-left-square.json new file mode 100644 index 0000000..79f9b70 --- /dev/null +++ b/openv0_server/library/lucide/arrow-down-left-square.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "direction", + "south-west", + "diagonal", + "sign", + "turn", + "keyboard", + "button" + ], + "categories": [ + "arrows", + "navigation", + "shapes", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-down-left.json b/openv0_server/library/lucide/arrow-down-left.json new file mode 100644 index 0000000..f5107b7 --- /dev/null +++ b/openv0_server/library/lucide/arrow-down-left.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "direction", + "south-west", + "diagonal" + ], + "categories": [ + "arrows", + "navigation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-down-narrow-wide.json b/openv0_server/library/lucide/arrow-down-narrow-wide.json new file mode 100644 index 0000000..9d40674 --- /dev/null +++ b/openv0_server/library/lucide/arrow-down-narrow-wide.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "filter", + "sort", + "ascending" + ], + "categories": [ + "text", + "layout", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-down-right-from-circle.json b/openv0_server/library/lucide/arrow-down-right-from-circle.json new file mode 100644 index 0000000..9b4d3f5 --- /dev/null +++ b/openv0_server/library/lucide/arrow-down-right-from-circle.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "outwards", + "direction", + "south-east", + "diagonal" + ], + "categories": [ + "arrows", + "navigation", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-down-right-square.json b/openv0_server/library/lucide/arrow-down-right-square.json new file mode 100644 index 0000000..171a37a --- /dev/null +++ b/openv0_server/library/lucide/arrow-down-right-square.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "direction", + "south-east", + "diagonal", + "sign", + "turn", + "keyboard", + "button" + ], + "categories": [ + "arrows", + "navigation", + "shapes", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-down-right.json b/openv0_server/library/lucide/arrow-down-right.json new file mode 100644 index 0000000..4d9746d --- /dev/null +++ b/openv0_server/library/lucide/arrow-down-right.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "direction", + "south-east", + "diagonal" + ], + "categories": [ + "arrows", + "navigation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-down-square.json b/openv0_server/library/lucide/arrow-down-square.json new file mode 100644 index 0000000..69e85ac --- /dev/null +++ b/openv0_server/library/lucide/arrow-down-square.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "backwards", + "reverse", + "direction", + "south", + "sign", + "keyboard", + "button" + ], + "categories": [ + "arrows", + "navigation", + "shapes", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-down-to-dot.json b/openv0_server/library/lucide/arrow-down-to-dot.json new file mode 100644 index 0000000..570a1e0 --- /dev/null +++ b/openv0_server/library/lucide/arrow-down-to-dot.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "direction", + "south", + "waypoint", + "location", + "step", + "into" + ], + "categories": [ + "arrows", + "navigation", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-down-to-line.json b/openv0_server/library/lucide/arrow-down-to-line.json new file mode 100644 index 0000000..e93a952 --- /dev/null +++ b/openv0_server/library/lucide/arrow-down-to-line.json @@ -0,0 +1,26 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "behind", + "direction", + "south", + "download", + "save", + "git", + "version control", + "pull", + "collapse", + "fold", + "vertical" + ], + "categories": [ + "arrows", + "navigation", + "files", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-down-up.json b/openv0_server/library/lucide/arrow-down-up.json new file mode 100644 index 0000000..1d376e1 --- /dev/null +++ b/openv0_server/library/lucide/arrow-down-up.json @@ -0,0 +1,25 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "bidirectional", + "two-way", + "2-way", + "swap", + "switch", + "network", + "traffic", + "flow", + "mobile data", + "internet", + "sort", + "reorder", + "move" + ], + "categories": [ + "arrows", + "navigation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-down-wide-narrow.json b/openv0_server/library/lucide/arrow-down-wide-narrow.json new file mode 100644 index 0000000..0df2e5e --- /dev/null +++ b/openv0_server/library/lucide/arrow-down-wide-narrow.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "csandman", + "karsa-mistmere" + ], + "tags": [ + "filter", + "sort", + "descending" + ], + "categories": [ + "text", + "layout", + "arrows" + ], + "aliases": [ + "sort-desc" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-down-z-a.json b/openv0_server/library/lucide/arrow-down-z-a.json new file mode 100644 index 0000000..fdf206a --- /dev/null +++ b/openv0_server/library/lucide/arrow-down-z-a.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "filter", + "sort", + "descending", + "alphabetical", + "reverse" + ], + "categories": [ + "text", + "layout", + "arrows" + ], + "aliases": [ + "arrow-down-za" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-down.json b/openv0_server/library/lucide/arrow-down.json new file mode 100644 index 0000000..a535015 --- /dev/null +++ b/openv0_server/library/lucide/arrow-down.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "backwards", + "reverse", + "direction", + "south" + ], + "categories": [ + "arrows", + "navigation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-left-circle.json b/openv0_server/library/lucide/arrow-left-circle.json new file mode 100644 index 0000000..bd9213e --- /dev/null +++ b/openv0_server/library/lucide/arrow-left-circle.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "previous", + "back", + "direction", + "west", + "sign", + "turn", + "button", + "<-" + ], + "categories": [ + "arrows", + "navigation", + "shapes", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-left-from-line.json b/openv0_server/library/lucide/arrow-left-from-line.json new file mode 100644 index 0000000..0faaff3 --- /dev/null +++ b/openv0_server/library/lucide/arrow-left-from-line.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "previous", + "back", + "direction", + "west", + "expand", + "fold", + "horizontal", + "<-|" + ], + "categories": [ + "arrows", + "navigation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-left-right.json b/openv0_server/library/lucide/arrow-left-right.json new file mode 100644 index 0000000..e3778b6 --- /dev/null +++ b/openv0_server/library/lucide/arrow-left-right.json @@ -0,0 +1,24 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "wojtekmaj", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "bidirectional", + "two-way", + "2-way", + "swap", + "switch", + "transaction", + "reorder", + "move", + "<-", + "->" + ], + "categories": [ + "arrows", + "navigation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-left-square.json b/openv0_server/library/lucide/arrow-left-square.json new file mode 100644 index 0000000..725ec4f --- /dev/null +++ b/openv0_server/library/lucide/arrow-left-square.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "previous", + "back", + "direction", + "west", + "sign", + "keyboard", + "button", + "<-" + ], + "categories": [ + "arrows", + "navigation", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-left-to-line.json b/openv0_server/library/lucide/arrow-left-to-line.json new file mode 100644 index 0000000..25cf988 --- /dev/null +++ b/openv0_server/library/lucide/arrow-left-to-line.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "previous", + "back", + "direction", + "west", + "collapse", + "fold", + "horizontal", + "|<-" + ], + "categories": [ + "arrows", + "navigation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-left.json b/openv0_server/library/lucide/arrow-left.json new file mode 100644 index 0000000..0b1e6ff --- /dev/null +++ b/openv0_server/library/lucide/arrow-left.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "previous", + "back", + "direction", + "west", + "<-" + ], + "categories": [ + "arrows", + "navigation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-right-circle.json b/openv0_server/library/lucide/arrow-right-circle.json new file mode 100644 index 0000000..57ddedb --- /dev/null +++ b/openv0_server/library/lucide/arrow-right-circle.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "next", + "forward", + "direction", + "east", + "sign", + "turn", + "button", + "->" + ], + "categories": [ + "arrows", + "navigation", + "shapes", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-right-from-line.json b/openv0_server/library/lucide/arrow-right-from-line.json new file mode 100644 index 0000000..1b25ae3 --- /dev/null +++ b/openv0_server/library/lucide/arrow-right-from-line.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "next", + "forward", + "direction", + "east", + "export", + "expand", + "fold", + "horizontal", + "|->" + ], + "categories": [ + "arrows", + "navigation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-right-left.json b/openv0_server/library/lucide/arrow-right-left.json new file mode 100644 index 0000000..4f0c845 --- /dev/null +++ b/openv0_server/library/lucide/arrow-right-left.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "bidirectional", + "two-way", + "2-way", + "swap", + "switch", + "transaction", + "reorder", + "move", + "<-", + "->" + ], + "categories": [ + "arrows", + "navigation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-right-square.json b/openv0_server/library/lucide/arrow-right-square.json new file mode 100644 index 0000000..c7a112b --- /dev/null +++ b/openv0_server/library/lucide/arrow-right-square.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "next", + "forward", + "direction", + "west", + "sign", + "keyboard", + "button", + "->" + ], + "categories": [ + "arrows", + "navigation", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-right-to-line.json b/openv0_server/library/lucide/arrow-right-to-line.json new file mode 100644 index 0000000..313a591 --- /dev/null +++ b/openv0_server/library/lucide/arrow-right-to-line.json @@ -0,0 +1,26 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "next", + "forward", + "direction", + "east", + "tab", + "keyboard", + "mac", + "indent", + "collapse", + "fold", + "horizontal", + "->|" + ], + "categories": [ + "arrows", + "navigation", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-right.json b/openv0_server/library/lucide/arrow-right.json new file mode 100644 index 0000000..4e12147 --- /dev/null +++ b/openv0_server/library/lucide/arrow-right.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "forward", + "next", + "direction", + "east", + "->" + ], + "categories": [ + "arrows", + "navigation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-up-0-1.json b/openv0_server/library/lucide/arrow-up-0-1.json new file mode 100644 index 0000000..7c4d415 --- /dev/null +++ b/openv0_server/library/lucide/arrow-up-0-1.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "filter", + "sort", + "ascending", + "numerical" + ], + "categories": [ + "text", + "layout", + "arrows" + ], + "aliases": [ + "arrow-up-01" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-up-1-0.json b/openv0_server/library/lucide/arrow-up-1-0.json new file mode 100644 index 0000000..63edc49 --- /dev/null +++ b/openv0_server/library/lucide/arrow-up-1-0.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "filter", + "sort", + "descending", + "numerical" + ], + "categories": [ + "text", + "layout", + "arrows" + ], + "aliases": [ + "arrow-up-10" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-up-a-z.json b/openv0_server/library/lucide/arrow-up-a-z.json new file mode 100644 index 0000000..41e7a6d --- /dev/null +++ b/openv0_server/library/lucide/arrow-up-a-z.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "filter", + "sort", + "ascending", + "alphabetical" + ], + "categories": [ + "text", + "layout", + "arrows" + ], + "aliases": [ + "arrow-up-az" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-up-circle.json b/openv0_server/library/lucide/arrow-up-circle.json new file mode 100644 index 0000000..68e35bf --- /dev/null +++ b/openv0_server/library/lucide/arrow-up-circle.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "forward", + "direction", + "north", + "sign", + "button" + ], + "categories": [ + "arrows", + "navigation", + "shapes", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-up-down.json b/openv0_server/library/lucide/arrow-up-down.json new file mode 100644 index 0000000..9a9a5aa --- /dev/null +++ b/openv0_server/library/lucide/arrow-up-down.json @@ -0,0 +1,25 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "it-is-not", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "bidirectional", + "two-way", + "2-way", + "swap", + "switch", + "network", + "mobile data", + "internet", + "sort", + "reorder", + "move" + ], + "categories": [ + "arrows", + "navigation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-up-from-dot.json b/openv0_server/library/lucide/arrow-up-from-dot.json new file mode 100644 index 0000000..ba6addd --- /dev/null +++ b/openv0_server/library/lucide/arrow-up-from-dot.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "direction", + "north", + "step", + "out" + ], + "categories": [ + "arrows", + "navigation", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-up-from-line.json b/openv0_server/library/lucide/arrow-up-from-line.json new file mode 100644 index 0000000..d977a8d --- /dev/null +++ b/openv0_server/library/lucide/arrow-up-from-line.json @@ -0,0 +1,25 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "forward", + "direction", + "north", + "upload", + "git", + "version control", + "push", + "expand", + "fold", + "vertical" + ], + "categories": [ + "arrows", + "navigation", + "files", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-up-left-from-circle.json b/openv0_server/library/lucide/arrow-up-left-from-circle.json new file mode 100644 index 0000000..a01a3ec --- /dev/null +++ b/openv0_server/library/lucide/arrow-up-left-from-circle.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "outwards", + "direction", + "north-west", + "diagonal", + "keyboard", + "button", + "escape" + ], + "categories": [ + "arrows", + "navigation", + "maps", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-up-left-square.json b/openv0_server/library/lucide/arrow-up-left-square.json new file mode 100644 index 0000000..3968836 --- /dev/null +++ b/openv0_server/library/lucide/arrow-up-left-square.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "direction", + "north-west", + "diagonal", + "sign", + "keyboard", + "button" + ], + "categories": [ + "arrows", + "navigation", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-up-left.json b/openv0_server/library/lucide/arrow-up-left.json new file mode 100644 index 0000000..547e391 --- /dev/null +++ b/openv0_server/library/lucide/arrow-up-left.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "direction", + "north-west", + "diagonal" + ], + "categories": [ + "arrows", + "navigation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-up-narrow-wide.json b/openv0_server/library/lucide/arrow-up-narrow-wide.json new file mode 100644 index 0000000..3d28955 --- /dev/null +++ b/openv0_server/library/lucide/arrow-up-narrow-wide.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "lukesmurray", + "ericfennis", + "csandman", + "karsa-mistmere" + ], + "tags": [ + "filter", + "sort", + "ascending" + ], + "categories": [ + "text", + "layout", + "arrows" + ], + "aliases": [ + "sort-asc" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-up-right-from-circle.json b/openv0_server/library/lucide/arrow-up-right-from-circle.json new file mode 100644 index 0000000..f5877db --- /dev/null +++ b/openv0_server/library/lucide/arrow-up-right-from-circle.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "outwards", + "direction", + "north-east", + "diagonal" + ], + "categories": [ + "arrows", + "navigation", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-up-right-square.json b/openv0_server/library/lucide/arrow-up-right-square.json new file mode 100644 index 0000000..cbb5780 --- /dev/null +++ b/openv0_server/library/lucide/arrow-up-right-square.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "direction", + "north-east", + "diagonal", + "sign", + "keyboard", + "button", + "share" + ], + "categories": [ + "arrows", + "navigation", + "shapes", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-up-right.json b/openv0_server/library/lucide/arrow-up-right.json new file mode 100644 index 0000000..b2ce472 --- /dev/null +++ b/openv0_server/library/lucide/arrow-up-right.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "direction", + "north-east", + "diagonal" + ], + "categories": [ + "arrows", + "navigation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-up-square.json b/openv0_server/library/lucide/arrow-up-square.json new file mode 100644 index 0000000..77510b2 --- /dev/null +++ b/openv0_server/library/lucide/arrow-up-square.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "forward", + "direction", + "north", + "sign", + "keyboard", + "button" + ], + "categories": [ + "arrows", + "navigation", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-up-to-line.json b/openv0_server/library/lucide/arrow-up-to-line.json new file mode 100644 index 0000000..09bc14a --- /dev/null +++ b/openv0_server/library/lucide/arrow-up-to-line.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "forward", + "direction", + "north", + "upload", + "collapse", + "fold", + "vertical" + ], + "categories": [ + "arrows", + "navigation", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-up-wide-narrow.json b/openv0_server/library/lucide/arrow-up-wide-narrow.json new file mode 100644 index 0000000..d2ed84b --- /dev/null +++ b/openv0_server/library/lucide/arrow-up-wide-narrow.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "filter", + "sort", + "descending" + ], + "categories": [ + "text", + "layout", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-up-z-a.json b/openv0_server/library/lucide/arrow-up-z-a.json new file mode 100644 index 0000000..93b3012 --- /dev/null +++ b/openv0_server/library/lucide/arrow-up-z-a.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "filter", + "sort", + "descending", + "alphabetical", + "reverse" + ], + "categories": [ + "text", + "layout", + "arrows" + ], + "aliases": [ + "arrow-up-za" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrow-up.json b/openv0_server/library/lucide/arrow-up.json new file mode 100644 index 0000000..e3086d5 --- /dev/null +++ b/openv0_server/library/lucide/arrow-up.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "forward", + "direction", + "north" + ], + "categories": [ + "arrows", + "navigation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/arrows-up-from-line.json b/openv0_server/library/lucide/arrows-up-from-line.json new file mode 100644 index 0000000..8514707 --- /dev/null +++ b/openv0_server/library/lucide/arrows-up-from-line.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "direction", + "orientation", + "this way up", + "vertical", + "package", + "box", + "fragile", + "postage", + "shipping" + ], + "categories": [ + "arrows", + "transportation", + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/asterisk.json b/openv0_server/library/lucide/asterisk.json new file mode 100644 index 0000000..16eff39 --- /dev/null +++ b/openv0_server/library/lucide/asterisk.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "reference", + "times", + "multiply", + "multiplication", + "operator", + "code", + "glob pattern", + "wildcard", + "*" + ], + "categories": [ + "text", + "maths", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/at-sign.json b/openv0_server/library/lucide/at-sign.json new file mode 100644 index 0000000..c524f76 --- /dev/null +++ b/openv0_server/library/lucide/at-sign.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "danielbayley" + ], + "tags": [ + "mention", + "at", + "email", + "message", + "@" + ], + "categories": [ + "text", + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/atom.json b/openv0_server/library/lucide/atom.json new file mode 100644 index 0000000..300aa2c --- /dev/null +++ b/openv0_server/library/lucide/atom.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "atomic", + "nuclear", + "physics", + "particle", + "element", + "molecule" + ], + "categories": [ + "science" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/award.json b/openv0_server/library/lucide/award.json new file mode 100644 index 0000000..fcaf074 --- /dev/null +++ b/openv0_server/library/lucide/award.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "karsa-mistmere" + ], + "tags": [ + "achievement", + "badge", + "rosette", + "prize", + "winner" + ], + "categories": [ + "account", + "sports", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/axe.json b/openv0_server/library/lucide/axe.json new file mode 100644 index 0000000..07dcfcc --- /dev/null +++ b/openv0_server/library/lucide/axe.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "ericfennis", + "csandman", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "hatchet" + ], + "categories": [ + "tools", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/axis-3d.json b/openv0_server/library/lucide/axis-3d.json new file mode 100644 index 0000000..e92d8a8 --- /dev/null +++ b/openv0_server/library/lucide/axis-3d.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "lscheibel", + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "gizmo", + "coordinates" + ], + "categories": [ + "design" + ], + "aliases": [ + "axis-3-d" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/baby.json b/openv0_server/library/lucide/baby.json new file mode 100644 index 0000000..3f14c9c --- /dev/null +++ b/openv0_server/library/lucide/baby.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "child", + "childproof", + "children" + ], + "categories": [ + "accessibility", + "people" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/backpack.json b/openv0_server/library/lucide/backpack.json new file mode 100644 index 0000000..a7b723f --- /dev/null +++ b/openv0_server/library/lucide/backpack.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "bag", + "hiking", + "travel", + "camping", + "school", + "childhood" + ], + "categories": [ + "gaming", + "photography", + "travel" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/badge-alert.json b/openv0_server/library/lucide/badge-alert.json new file mode 100644 index 0000000..89e5a5c --- /dev/null +++ b/openv0_server/library/lucide/badge-alert.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "check", + "verified", + "unverified", + "security", + "safety", + "issue" + ], + "categories": [ + "account", + "social", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/badge-cent.json b/openv0_server/library/lucide/badge-cent.json new file mode 100644 index 0000000..2e6e9b4 --- /dev/null +++ b/openv0_server/library/lucide/badge-cent.json @@ -0,0 +1,32 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "discount", + "offer", + "sale", + "voucher", + "tag", + "monetization", + "marketing", + "finance", + "financial", + "exchange", + "transaction", + "payment", + "cents", + "dollar", + "usd", + "$", + "¢" + ], + "categories": [ + "shopping", + "money", + "currency", + "account", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/badge-check.json b/openv0_server/library/lucide/badge-check.json new file mode 100644 index 0000000..60d862b --- /dev/null +++ b/openv0_server/library/lucide/badge-check.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "aliases": ["verified"], + "tags": [ + "verified", + "check" + ], + "categories": [ + "account", + "social", + "shapes" + ] +} diff --git a/openv0_server/library/lucide/badge-dollar-sign.json b/openv0_server/library/lucide/badge-dollar-sign.json new file mode 100644 index 0000000..99bf5bc --- /dev/null +++ b/openv0_server/library/lucide/badge-dollar-sign.json @@ -0,0 +1,30 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "discount", + "offer", + "sale", + "voucher", + "tag", + "monetization", + "marketing", + "finance", + "financial", + "exchange", + "transaction", + "payment", + "usd", + "$" + ], + "categories": [ + "shopping", + "money", + "currency", + "account", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/badge-euro.json b/openv0_server/library/lucide/badge-euro.json new file mode 100644 index 0000000..bc73ae4 --- /dev/null +++ b/openv0_server/library/lucide/badge-euro.json @@ -0,0 +1,28 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "discount", + "offer", + "sale", + "voucher", + "tag", + "monetization", + "marketing", + "finance", + "financial", + "exchange", + "transaction", + "payment", + "€" + ], + "categories": [ + "shopping", + "money", + "currency", + "account", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/badge-help.json b/openv0_server/library/lucide/badge-help.json new file mode 100644 index 0000000..9021003 --- /dev/null +++ b/openv0_server/library/lucide/badge-help.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "verified", + "unverified", + "help" + ], + "categories": [ + "account", + "accessibility", + "social", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/badge-indian-rupee.json b/openv0_server/library/lucide/badge-indian-rupee.json new file mode 100644 index 0000000..e9d89c2 --- /dev/null +++ b/openv0_server/library/lucide/badge-indian-rupee.json @@ -0,0 +1,29 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "discount", + "offer", + "sale", + "voucher", + "tag", + "monetization", + "marketing", + "finance", + "financial", + "exchange", + "transaction", + "payment", + "inr", + "₹" + ], + "categories": [ + "shopping", + "money", + "currency", + "account", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/badge-info.json b/openv0_server/library/lucide/badge-info.json new file mode 100644 index 0000000..9021003 --- /dev/null +++ b/openv0_server/library/lucide/badge-info.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "verified", + "unverified", + "help" + ], + "categories": [ + "account", + "accessibility", + "social", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/badge-japanese-yen.json b/openv0_server/library/lucide/badge-japanese-yen.json new file mode 100644 index 0000000..2fc678b --- /dev/null +++ b/openv0_server/library/lucide/badge-japanese-yen.json @@ -0,0 +1,29 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "discount", + "offer", + "sale", + "voucher", + "tag", + "monetization", + "marketing", + "finance", + "financial", + "exchange", + "transaction", + "payment", + "jpy", + "¥" + ], + "categories": [ + "shopping", + "money", + "currency", + "account", + "shapes" + ] +} diff --git a/openv0_server/library/lucide/badge-minus.json b/openv0_server/library/lucide/badge-minus.json new file mode 100644 index 0000000..e5c0cee --- /dev/null +++ b/openv0_server/library/lucide/badge-minus.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "verified", + "unverified", + "delete", + "remove", + "erase" + ], + "categories": [ + "account", + "social", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/badge-percent.json b/openv0_server/library/lucide/badge-percent.json new file mode 100644 index 0000000..34bf9e2 --- /dev/null +++ b/openv0_server/library/lucide/badge-percent.json @@ -0,0 +1,25 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "verified", + "unverified", + "sale", + "discount", + "offer", + "marketing", + "sticker", + "price tag" + ], + "categories": [ + "account", + "social", + "money", + "shopping", + "maths", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/badge-plus.json b/openv0_server/library/lucide/badge-plus.json new file mode 100644 index 0000000..59292c7 --- /dev/null +++ b/openv0_server/library/lucide/badge-plus.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "verified", + "unverified", + "add", + "create", + "new" + ], + "categories": [ + "account", + "social", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/badge-pound-sterling.json b/openv0_server/library/lucide/badge-pound-sterling.json new file mode 100644 index 0000000..993dc8c --- /dev/null +++ b/openv0_server/library/lucide/badge-pound-sterling.json @@ -0,0 +1,30 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "discount", + "offer", + "sale", + "voucher", + "tag", + "monetization", + "marketing", + "finance", + "financial", + "exchange", + "transaction", + "payment", + "british", + "gbp", + "£" + ], + "categories": [ + "shopping", + "money", + "currency", + "account", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/badge-russian-ruble.json b/openv0_server/library/lucide/badge-russian-ruble.json new file mode 100644 index 0000000..272a1f4 --- /dev/null +++ b/openv0_server/library/lucide/badge-russian-ruble.json @@ -0,0 +1,29 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "discount", + "offer", + "sale", + "voucher", + "tag", + "monetization", + "marketing", + "finance", + "financial", + "exchange", + "transaction", + "payment", + "rub", + "₽" + ], + "categories": [ + "shopping", + "money", + "currency", + "account", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/badge-swiss-franc.json b/openv0_server/library/lucide/badge-swiss-franc.json new file mode 100644 index 0000000..50308e2 --- /dev/null +++ b/openv0_server/library/lucide/badge-swiss-franc.json @@ -0,0 +1,29 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "discount", + "offer", + "sale", + "voucher", + "tag", + "monetization", + "marketing", + "finance", + "financial", + "exchange", + "transaction", + "payment", + "chf", + "₣" + ], + "categories": [ + "shopping", + "money", + "currency", + "account", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/badge-x.json b/openv0_server/library/lucide/badge-x.json new file mode 100644 index 0000000..b21d516 --- /dev/null +++ b/openv0_server/library/lucide/badge-x.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "verified", + "unverified", + "lost", + "delete", + "remove" + ], + "categories": [ + "account", + "social", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/badge.json b/openv0_server/library/lucide/badge.json new file mode 100644 index 0000000..4e8dc83 --- /dev/null +++ b/openv0_server/library/lucide/badge.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "check", + "verified", + "unverified" + ], + "categories": [ + "account", + "social", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/baggage-claim.json b/openv0_server/library/lucide/baggage-claim.json new file mode 100644 index 0000000..00addd6 --- /dev/null +++ b/openv0_server/library/lucide/baggage-claim.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "baggage", + "luggage", + "travel", + "cart", + "trolley", + "suitcase" + ], + "categories": [ + "transportation", + "travel" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/ban.json b/openv0_server/library/lucide/ban.json new file mode 100644 index 0000000..4fcc87f --- /dev/null +++ b/openv0_server/library/lucide/ban.json @@ -0,0 +1,25 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "cancel", + "no", + "stop", + "forbidden", + "prohibited", + "error", + "incorrect", + "mistake", + "wrong", + "failure", + "circle", + "slash", + "null", + "void" + ], + "categories": [ + "account" + ] +} diff --git a/openv0_server/library/lucide/banana.json b/openv0_server/library/lucide/banana.json new file mode 100644 index 0000000..1bb1288 --- /dev/null +++ b/openv0_server/library/lucide/banana.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "fruit", + "food" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/banknote.json b/openv0_server/library/lucide/banknote.json new file mode 100644 index 0000000..c70558d --- /dev/null +++ b/openv0_server/library/lucide/banknote.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "mittalyashu" + ], + "tags": [ + "currency", + "money", + "payment" + ], + "categories": [ + "currency", + "money" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bar-chart-2.json b/openv0_server/library/lucide/bar-chart-2.json new file mode 100644 index 0000000..0358569 --- /dev/null +++ b/openv0_server/library/lucide/bar-chart-2.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "statistics", + "diagram", + "graph" + ], + "categories": [ + "charts" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bar-chart-3.json b/openv0_server/library/lucide/bar-chart-3.json new file mode 100644 index 0000000..45486fc --- /dev/null +++ b/openv0_server/library/lucide/bar-chart-3.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "danielbayley" + ], + "tags": [ + "statistics", + "diagram", + "graph" + ], + "categories": [ + "charts" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bar-chart-4.json b/openv0_server/library/lucide/bar-chart-4.json new file mode 100644 index 0000000..45486fc --- /dev/null +++ b/openv0_server/library/lucide/bar-chart-4.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "danielbayley" + ], + "tags": [ + "statistics", + "diagram", + "graph" + ], + "categories": [ + "charts" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bar-chart-big.json b/openv0_server/library/lucide/bar-chart-big.json new file mode 100644 index 0000000..94dd3e0 --- /dev/null +++ b/openv0_server/library/lucide/bar-chart-big.json @@ -0,0 +1,11 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "statistics", + "diagram", + "graph" + ], + "categories": [ + "charts" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bar-chart-horizontal-big.json b/openv0_server/library/lucide/bar-chart-horizontal-big.json new file mode 100644 index 0000000..94dd3e0 --- /dev/null +++ b/openv0_server/library/lucide/bar-chart-horizontal-big.json @@ -0,0 +1,11 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "statistics", + "diagram", + "graph" + ], + "categories": [ + "charts" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bar-chart-horizontal.json b/openv0_server/library/lucide/bar-chart-horizontal.json new file mode 100644 index 0000000..45486fc --- /dev/null +++ b/openv0_server/library/lucide/bar-chart-horizontal.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "danielbayley" + ], + "tags": [ + "statistics", + "diagram", + "graph" + ], + "categories": [ + "charts" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bar-chart.json b/openv0_server/library/lucide/bar-chart.json new file mode 100644 index 0000000..0358569 --- /dev/null +++ b/openv0_server/library/lucide/bar-chart.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "statistics", + "diagram", + "graph" + ], + "categories": [ + "charts" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/baseline.json b/openv0_server/library/lucide/baseline.json new file mode 100644 index 0000000..8898d0c --- /dev/null +++ b/openv0_server/library/lucide/baseline.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "text", + "format", + "color" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bath.json b/openv0_server/library/lucide/bath.json new file mode 100644 index 0000000..ace2c3c --- /dev/null +++ b/openv0_server/library/lucide/bath.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "amenities", + "services", + "bathroom", + "shower" + ], + "categories": [ + "travel" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/battery-charging.json b/openv0_server/library/lucide/battery-charging.json new file mode 100644 index 0000000..40e66a4 --- /dev/null +++ b/openv0_server/library/lucide/battery-charging.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis", + "csandman", + "karsa-mistmere", + "johnletey" + ], + "tags": [ + "power", + "electricity", + "accumulator", + "charge" + ], + "categories": [ + "connectivity", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/battery-full.json b/openv0_server/library/lucide/battery-full.json new file mode 100644 index 0000000..21ab947 --- /dev/null +++ b/openv0_server/library/lucide/battery-full.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere", + "johnletey" + ], + "tags": [ + "power", + "electricity", + "accumulator", + "charge" + ], + "categories": [ + "connectivity", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/battery-low.json b/openv0_server/library/lucide/battery-low.json new file mode 100644 index 0000000..8c8008f --- /dev/null +++ b/openv0_server/library/lucide/battery-low.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "johnletey", + "karsa-mistmere" + ], + "tags": [ + "power", + "electricity", + "accumulator", + "charge" + ], + "categories": [ + "connectivity", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/battery-medium.json b/openv0_server/library/lucide/battery-medium.json new file mode 100644 index 0000000..8c8008f --- /dev/null +++ b/openv0_server/library/lucide/battery-medium.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "johnletey", + "karsa-mistmere" + ], + "tags": [ + "power", + "electricity", + "accumulator", + "charge" + ], + "categories": [ + "connectivity", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/battery-warning.json b/openv0_server/library/lucide/battery-warning.json new file mode 100644 index 0000000..0657fad --- /dev/null +++ b/openv0_server/library/lucide/battery-warning.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Kaladii", + "ericfennis" + ], + "tags": [ + "power", + "electricity", + "accumulator", + "charge", + "exclamation mark" + ], + "categories": [ + "connectivity", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/battery.json b/openv0_server/library/lucide/battery.json new file mode 100644 index 0000000..76c46c9 --- /dev/null +++ b/openv0_server/library/lucide/battery.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis", + "johnletey" + ], + "tags": [ + "power", + "electricity", + "accumulator", + "charge" + ], + "categories": [ + "connectivity", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/beaker.json b/openv0_server/library/lucide/beaker.json new file mode 100644 index 0000000..346f61e --- /dev/null +++ b/openv0_server/library/lucide/beaker.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "ericfennis" + ], + "tags": [ + "cup", + "lab", + "chemistry", + "experiment", + "test" + ], + "categories": [ + "science", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bean-off.json b/openv0_server/library/lucide/bean-off.json new file mode 100644 index 0000000..75d95fc --- /dev/null +++ b/openv0_server/library/lucide/bean-off.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "soy free", + "legume", + "soy", + "food", + "seed", + "allergy", + "intolerance", + "diet" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bean.json b/openv0_server/library/lucide/bean.json new file mode 100644 index 0000000..ce8ea58 --- /dev/null +++ b/openv0_server/library/lucide/bean.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "legume", + "soy", + "food", + "seed" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bed-double.json b/openv0_server/library/lucide/bed-double.json new file mode 100644 index 0000000..09394b2 --- /dev/null +++ b/openv0_server/library/lucide/bed-double.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "sleep", + "hotel", + "furniture" + ], + "categories": [ + "furniture" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bed-single.json b/openv0_server/library/lucide/bed-single.json new file mode 100644 index 0000000..09394b2 --- /dev/null +++ b/openv0_server/library/lucide/bed-single.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "sleep", + "hotel", + "furniture" + ], + "categories": [ + "furniture" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bed.json b/openv0_server/library/lucide/bed.json new file mode 100644 index 0000000..09394b2 --- /dev/null +++ b/openv0_server/library/lucide/bed.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "sleep", + "hotel", + "furniture" + ], + "categories": [ + "furniture" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/beef.json b/openv0_server/library/lucide/beef.json new file mode 100644 index 0000000..16906bd --- /dev/null +++ b/openv0_server/library/lucide/beef.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "kemie", + "ericfennis" + ], + "tags": [ + "food", + "dish", + "restaurant", + "course", + "meal", + "meat", + "bbq", + "steak" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/beer.json b/openv0_server/library/lucide/beer.json new file mode 100644 index 0000000..b96c562 --- /dev/null +++ b/openv0_server/library/lucide/beer.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "alcohol", + "bar", + "beverage", + "brewery", + "drink" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bell-dot.json b/openv0_server/library/lucide/bell-dot.json new file mode 100644 index 0000000..244c093 --- /dev/null +++ b/openv0_server/library/lucide/bell-dot.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "alarm", + "notification", + "sound", + "reminder", + "unread" + ], + "categories": [ + "account", + "notifications" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bell-minus.json b/openv0_server/library/lucide/bell-minus.json new file mode 100644 index 0000000..62ad3fb --- /dev/null +++ b/openv0_server/library/lucide/bell-minus.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "danielbayley" + ], + "tags": [ + "alarm", + "notification", + "silent", + "reminder", + "delete", + "remove", + "erase" + ], + "categories": [ + "notifications" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bell-off.json b/openv0_server/library/lucide/bell-off.json new file mode 100644 index 0000000..f13eb44 --- /dev/null +++ b/openv0_server/library/lucide/bell-off.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "mittalyashu", + "ericfennis", + "danielbayley" + ], + "tags": [ + "alarm", + "notification", + "silent", + "reminder" + ], + "categories": [ + "notifications" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bell-plus.json b/openv0_server/library/lucide/bell-plus.json new file mode 100644 index 0000000..97a1cf0 --- /dev/null +++ b/openv0_server/library/lucide/bell-plus.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "danielbayley" + ], + "tags": [ + "notification", + "silent", + "reminder", + "add", + "create", + "new" + ], + "categories": [ + "notifications" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bell-ring.json b/openv0_server/library/lucide/bell-ring.json new file mode 100644 index 0000000..9f5e93d --- /dev/null +++ b/openv0_server/library/lucide/bell-ring.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "danielbayley" + ], + "tags": [ + "alarm", + "notification", + "sound", + "reminder" + ], + "categories": [ + "notifications" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bell.json b/openv0_server/library/lucide/bell.json new file mode 100644 index 0000000..ad3d250 --- /dev/null +++ b/openv0_server/library/lucide/bell.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "danielbayley" + ], + "tags": [ + "alarm", + "notification", + "sound", + "reminder" + ], + "categories": [ + "account", + "notifications" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bike.json b/openv0_server/library/lucide/bike.json new file mode 100644 index 0000000..f17c040 --- /dev/null +++ b/openv0_server/library/lucide/bike.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ahtohbi4", + "ericfennis", + "Andreto", + "csandman", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "bicycle", + "transport", + "trip" + ], + "categories": [ + "transportation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/binary.json b/openv0_server/library/lucide/binary.json new file mode 100644 index 0000000..b881bce --- /dev/null +++ b/openv0_server/library/lucide/binary.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "code", + "digits", + "computer", + "zero", + "one", + "boolean" + ], + "categories": [ + "text", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/biohazard.json b/openv0_server/library/lucide/biohazard.json new file mode 100644 index 0000000..846ef5c --- /dev/null +++ b/openv0_server/library/lucide/biohazard.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "fallout", + "waste", + "biology", + "chemistry", + "chemical", + "element" + ], + "categories": [ + "science" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bird.json b/openv0_server/library/lucide/bird.json new file mode 100644 index 0000000..4bacbd1 --- /dev/null +++ b/openv0_server/library/lucide/bird.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "it-is-not" + ], + "tags": [ + "peace", + "freedom", + "wing", + "avian", + "tweet" + ], + "categories": [ + "animals" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bitcoin.json b/openv0_server/library/lucide/bitcoin.json new file mode 100644 index 0000000..b19331a --- /dev/null +++ b/openv0_server/library/lucide/bitcoin.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "mittalyashu" + ], + "tags": [ + "currency", + "money", + "payment" + ], + "categories": [ + "brands", + "currency", + "development", + "money" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/blinds.json b/openv0_server/library/lucide/blinds.json new file mode 100644 index 0000000..cec9494 --- /dev/null +++ b/openv0_server/library/lucide/blinds.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "it-is-not" + ], + "tags": [ + "shades", + "screen", + "curtain", + "shutter", + "roller blind", + "window", + "lighting", + "household", + "home" + ], + "categories": [ + "home" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/blocks.json b/openv0_server/library/lucide/blocks.json new file mode 100644 index 0000000..ac6cefd --- /dev/null +++ b/openv0_server/library/lucide/blocks.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "addon", + "plugin", + "integration", + "extension", + "package", + "build", + "stack", + "toys", + "kids", + "children", + "learning" + ], + "categories": [ + "development", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bluetooth-connected.json b/openv0_server/library/lucide/bluetooth-connected.json new file mode 100644 index 0000000..2bb8485 --- /dev/null +++ b/openv0_server/library/lucide/bluetooth-connected.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "csandman" + ], + "tags": [ + "paired" + ], + "categories": [ + "connectivity", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bluetooth-off.json b/openv0_server/library/lucide/bluetooth-off.json new file mode 100644 index 0000000..77be1c4 --- /dev/null +++ b/openv0_server/library/lucide/bluetooth-off.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "csandman" + ], + "tags": [ + "lost" + ], + "categories": [ + "connectivity", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bluetooth-searching.json b/openv0_server/library/lucide/bluetooth-searching.json new file mode 100644 index 0000000..313411d --- /dev/null +++ b/openv0_server/library/lucide/bluetooth-searching.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "csandman" + ], + "tags": [ + "pairing" + ], + "categories": [ + "connectivity", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bluetooth.json b/openv0_server/library/lucide/bluetooth.json new file mode 100644 index 0000000..8ae67de --- /dev/null +++ b/openv0_server/library/lucide/bluetooth.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis", + "csandman" + ], + "tags": [ + "wireless" + ], + "categories": [ + "connectivity", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bold.json b/openv0_server/library/lucide/bold.json new file mode 100644 index 0000000..4396f7a --- /dev/null +++ b/openv0_server/library/lucide/bold.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "text", + "strong", + "format" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bomb.json b/openv0_server/library/lucide/bomb.json new file mode 100644 index 0000000..59868df --- /dev/null +++ b/openv0_server/library/lucide/bomb.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "fatal", + "error", + "crash", + "blockbuster", + "mine", + "explosion", + "explode", + "explosive" + ], + "categories": [] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bone.json b/openv0_server/library/lucide/bone.json new file mode 100644 index 0000000..e3c76a5 --- /dev/null +++ b/openv0_server/library/lucide/bone.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "health", + "skeleton", + "skull", + "death", + "pets", + "dog" + ], + "categories": [ + "animals", + "medical", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/book-copy.json b/openv0_server/library/lucide/book-copy.json new file mode 100644 index 0000000..7bbe1c7 --- /dev/null +++ b/openv0_server/library/lucide/book-copy.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "read", + "dictionary", + "booklet", + "library", + "code", + "version control", + "git", + "repository", + "clone" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/book-down.json b/openv0_server/library/lucide/book-down.json new file mode 100644 index 0000000..bd96858 --- /dev/null +++ b/openv0_server/library/lucide/book-down.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "code", + "version control", + "git", + "repository", + "pull" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/book-key.json b/openv0_server/library/lucide/book-key.json new file mode 100644 index 0000000..bb76b37 --- /dev/null +++ b/openv0_server/library/lucide/book-key.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "code", + "version control", + "git", + "repository", + "private" + ], + "categories": [ + "development", + "security" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/book-lock.json b/openv0_server/library/lucide/book-lock.json new file mode 100644 index 0000000..0018204 --- /dev/null +++ b/openv0_server/library/lucide/book-lock.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "code", + "version control", + "git", + "repository", + "private" + ], + "categories": [ + "development", + "security" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/book-marked.json b/openv0_server/library/lucide/book-marked.json new file mode 100644 index 0000000..2ad8fe4 --- /dev/null +++ b/openv0_server/library/lucide/book-marked.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "read", + "dictionary", + "booklet", + "library", + "code", + "version control", + "git", + "repository" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/book-minus.json b/openv0_server/library/lucide/book-minus.json new file mode 100644 index 0000000..aa2ddef --- /dev/null +++ b/openv0_server/library/lucide/book-minus.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "code", + "version control", + "git", + "repository", + "remove", + "delete" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/book-open-check.json b/openv0_server/library/lucide/book-open-check.json new file mode 100644 index 0000000..f7e9b42 --- /dev/null +++ b/openv0_server/library/lucide/book-open-check.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "schmidt-oliver", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "read", + "library", + "plain language", + "done", + "todo", + "tick", + "complete", + "task" + ], + "categories": [ + "gaming", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/book-open.json b/openv0_server/library/lucide/book-open.json new file mode 100644 index 0000000..1c77f93 --- /dev/null +++ b/openv0_server/library/lucide/book-open.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "read", + "library" + ], + "categories": [ + "gaming", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/book-plus.json b/openv0_server/library/lucide/book-plus.json new file mode 100644 index 0000000..7be1c7f --- /dev/null +++ b/openv0_server/library/lucide/book-plus.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "code", + "version control", + "git", + "repository", + "add" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/book-template.json b/openv0_server/library/lucide/book-template.json new file mode 100644 index 0000000..8ac0bf6 --- /dev/null +++ b/openv0_server/library/lucide/book-template.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas" + ], + "tags": [ + "read", + "code", + "version control", + "git", + "repository", + "dashed" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/book-up-2.json b/openv0_server/library/lucide/book-up-2.json new file mode 100644 index 0000000..ffe1967 --- /dev/null +++ b/openv0_server/library/lucide/book-up-2.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "code", + "version control", + "git", + "repository", + "push", + "force" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/book-up.json b/openv0_server/library/lucide/book-up.json new file mode 100644 index 0000000..3410b26 --- /dev/null +++ b/openv0_server/library/lucide/book-up.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "code", + "version control", + "git", + "repository", + "push" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/book-x.json b/openv0_server/library/lucide/book-x.json new file mode 100644 index 0000000..aa2ddef --- /dev/null +++ b/openv0_server/library/lucide/book-x.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "code", + "version control", + "git", + "repository", + "remove", + "delete" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/book.json b/openv0_server/library/lucide/book.json new file mode 100644 index 0000000..a5053ed --- /dev/null +++ b/openv0_server/library/lucide/book.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "read", + "dictionary", + "booklet", + "magazine", + "library" + ], + "categories": [ + "gaming", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bookmark-check.json b/openv0_server/library/lucide/bookmark-check.json new file mode 100644 index 0000000..c6c5fad --- /dev/null +++ b/openv0_server/library/lucide/bookmark-check.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "read", + "finished", + "complete", + "clip", + "marker", + "tag", + "task", + "todo" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bookmark-minus.json b/openv0_server/library/lucide/bookmark-minus.json new file mode 100644 index 0000000..9d1597c --- /dev/null +++ b/openv0_server/library/lucide/bookmark-minus.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "siarie", + "ericfennis" + ], + "tags": [ + "delete", + "remove" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bookmark-plus.json b/openv0_server/library/lucide/bookmark-plus.json new file mode 100644 index 0000000..aa6fc99 --- /dev/null +++ b/openv0_server/library/lucide/bookmark-plus.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "siarie", + "ericfennis" + ], + "tags": [ + "add" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bookmark-x.json b/openv0_server/library/lucide/bookmark-x.json new file mode 100644 index 0000000..02fe269 --- /dev/null +++ b/openv0_server/library/lucide/bookmark-x.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "read", + "clip", + "marker", + "tag", + "cancel", + "close", + "delete", + "remove", + "clear" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bookmark.json b/openv0_server/library/lucide/bookmark.json new file mode 100644 index 0000000..c41b5c4 --- /dev/null +++ b/openv0_server/library/lucide/bookmark.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "siarie", + "ericfennis" + ], + "tags": [ + "read", + "clip", + "marker", + "tag" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/boom-box.json b/openv0_server/library/lucide/boom-box.json new file mode 100644 index 0000000..51eb2d5 --- /dev/null +++ b/openv0_server/library/lucide/boom-box.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "radio", + "speakers", + "audio", + "music", + "sound", + "broadcast", + "live", + "frequency" + ], + "categories": [ + "devices", + "multimedia", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bot.json b/openv0_server/library/lucide/bot.json new file mode 100644 index 0000000..29e3b0c --- /dev/null +++ b/openv0_server/library/lucide/bot.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "robot", + "ai", + "chat", + "assistant" + ], + "categories": [ + "development", + "social" + ] +} diff --git a/openv0_server/library/lucide/box-select.json b/openv0_server/library/lucide/box-select.json new file mode 100644 index 0000000..ca284af --- /dev/null +++ b/openv0_server/library/lucide/box-select.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "llaenowyd", + "mishkaio", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "selection", + "square", + "rectangular", + "marquee", + "tool", + "dashed" + ], + "categories": [ + "text", + "design" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/box.json b/openv0_server/library/lucide/box.json new file mode 100644 index 0000000..42d2598 --- /dev/null +++ b/openv0_server/library/lucide/box.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "cube", + "package" + ], + "categories": [ + "shapes", + "gaming", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/boxes.json b/openv0_server/library/lucide/boxes.json new file mode 100644 index 0000000..505cdcb --- /dev/null +++ b/openv0_server/library/lucide/boxes.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "cubes", + "packages", + "parts", + "group", + "units", + "collection", + "cluster" + ], + "categories": [ + "shapes", + "gaming", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/braces.json b/openv0_server/library/lucide/braces.json new file mode 100644 index 0000000..c42bb5b --- /dev/null +++ b/openv0_server/library/lucide/braces.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "aliases": ["curly-braces"], + "tags": [ + "json", + "code", + "token", + "curly brackets", + "data", + "{", + "}" + ], + "categories": [ + "development", + "files" + ] +} diff --git a/openv0_server/library/lucide/brackets.json b/openv0_server/library/lucide/brackets.json new file mode 100644 index 0000000..cbe814b --- /dev/null +++ b/openv0_server/library/lucide/brackets.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "code", + "token", + "array", + "list", + "square", + "[", + "]" + ], + "categories": [ + "development", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/brain-circuit.json b/openv0_server/library/lucide/brain-circuit.json new file mode 100644 index 0000000..d716d52 --- /dev/null +++ b/openv0_server/library/lucide/brain-circuit.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas", + "it-is-not", + "ericfennis" + ], + "tags": [ + "mind", + "intellect", + "artificial intelligence", + "ai", + "deep learning", + "machine learning", + "computing" + ], + "categories": [ + "science", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/brain-cog.json b/openv0_server/library/lucide/brain-cog.json new file mode 100644 index 0000000..2c0a581 --- /dev/null +++ b/openv0_server/library/lucide/brain-cog.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas", + "it-is-not" + ], + "tags": [ + "mind", + "intellect", + "artificial intelligence", + "ai", + "deep learning", + "machine learning", + "computing" + ], + "categories": [ + "science", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/brain.json b/openv0_server/library/lucide/brain.json new file mode 100644 index 0000000..081e5f0 --- /dev/null +++ b/openv0_server/library/lucide/brain.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas", + "it-is-not" + ], + "tags": [ + "medical", + "mind", + "intellect", + "cerebral", + "consciousness", + "genius", + "artificial intelligence", + "ai" + ], + "categories": [ + "medical", + "science" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/briefcase.json b/openv0_server/library/lucide/briefcase.json new file mode 100644 index 0000000..ea93b7b --- /dev/null +++ b/openv0_server/library/lucide/briefcase.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "work", + "bag", + "baggage", + "folder" + ], + "categories": [ + "transportation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bring-to-front.json b/openv0_server/library/lucide/bring-to-front.json new file mode 100644 index 0000000..041b783 --- /dev/null +++ b/openv0_server/library/lucide/bring-to-front.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "james-yeoman", + "jguddas" + ], + "tags": [ + "bring", + "send", + "move", + "over", + "forward", + "front", + "overlap", + "layer", + "order" + ], + "categories": [ + "design", + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/brush.json b/openv0_server/library/lucide/brush.json new file mode 100644 index 0000000..e4f27ac --- /dev/null +++ b/openv0_server/library/lucide/brush.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "draw", + "paint", + "color" + ], + "categories": [ + "text", + "design", + "tools" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bug-off.json b/openv0_server/library/lucide/bug-off.json new file mode 100644 index 0000000..abb5135 --- /dev/null +++ b/openv0_server/library/lucide/bug-off.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "debug", + "code", + "insect", + "kill", + "exterminate", + "pest control" + ], + "categories": [ + "development", + "animals" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bug-play.json b/openv0_server/library/lucide/bug-play.json new file mode 100644 index 0000000..20ccd82 --- /dev/null +++ b/openv0_server/library/lucide/bug-play.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "debug", + "code", + "insect" + ], + "categories": [ + "development", + "animals" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bug.json b/openv0_server/library/lucide/bug.json new file mode 100644 index 0000000..2704286 --- /dev/null +++ b/openv0_server/library/lucide/bug.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "issue", + "report", + "debug", + "code", + "insect" + ], + "categories": [ + "development", + "animals" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/building-2.json b/openv0_server/library/lucide/building-2.json new file mode 100644 index 0000000..6368d1b --- /dev/null +++ b/openv0_server/library/lucide/building-2.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "maxim-s-barabash", + "ericfennis", + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "business", + "company", + "enterprise", + "skyscraper", + "organisation", + "organization" + ], + "categories": [ + "account", + "buildings" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/building.json b/openv0_server/library/lucide/building.json new file mode 100644 index 0000000..e490dc6 --- /dev/null +++ b/openv0_server/library/lucide/building.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "organisation", + "organization" + ], + "categories": [ + "account", + "buildings" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bus-front.json b/openv0_server/library/lucide/bus-front.json new file mode 100644 index 0000000..912a640 --- /dev/null +++ b/openv0_server/library/lucide/bus-front.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "coach", + "vehicle", + "trip", + "road" + ], + "categories": [ + "transportation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/bus.json b/openv0_server/library/lucide/bus.json new file mode 100644 index 0000000..1da100f --- /dev/null +++ b/openv0_server/library/lucide/bus.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ahtohbi4", + "ericfennis", + "Andreto", + "karsa-mistmere" + ], + "tags": [ + "bus", + "vehicle", + "transport", + "trip" + ], + "categories": [ + "transportation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cable-car.json b/openv0_server/library/lucide/cable-car.json new file mode 100644 index 0000000..e7616a6 --- /dev/null +++ b/openv0_server/library/lucide/cable-car.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "ski lift", + "winter holiday", + "alpine", + "resort", + "mountains" + ], + "categories": [ + "transportation", + "travel" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cable.json b/openv0_server/library/lucide/cable.json new file mode 100644 index 0000000..ac8b7bb --- /dev/null +++ b/openv0_server/library/lucide/cable.json @@ -0,0 +1,41 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "cord", + "wire", + "connector", + "connection", + "link", + "signal", + "console", + "computer", + "equipment", + "electricity", + "electronics", + "recharging", + "charger", + "power", + "supply", + "disconnected", + "unplugged", + "plugs", + "interface", + "input", + "output", + "audio video", + "av", + "rca", + "scart", + "tv", + "television", + "optical" + ], + "categories": [ + "connectivity", + "devices", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cake-slice.json b/openv0_server/library/lucide/cake-slice.json new file mode 100644 index 0000000..9cc445c --- /dev/null +++ b/openv0_server/library/lucide/cake-slice.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "birthday", + "birthdate", + "celebration", + "party", + "surprise", + "gateaux", + "dessert", + "candles", + "wish", + "fondant", + "icing sugar", + "sweet", + "baking" + ], + "categories": [ + "food-beverage", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cake.json b/openv0_server/library/lucide/cake.json new file mode 100644 index 0000000..5998d3d --- /dev/null +++ b/openv0_server/library/lucide/cake.json @@ -0,0 +1,24 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "birthday", + "birthdate", + "celebration", + "party", + "surprise", + "gateaux", + "dessert", + "fondant", + "icing sugar", + "sweet", + "baking" + ], + "categories": [ + "food-beverage", + "social", + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/calculator.json b/openv0_server/library/lucide/calculator.json new file mode 100644 index 0000000..4bd4d9f --- /dev/null +++ b/openv0_server/library/lucide/calculator.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "csandman" + ], + "tags": [ + "count", + "calculating machine" + ], + "categories": [ + "maths", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/calendar-check-2.json b/openv0_server/library/lucide/calendar-check-2.json new file mode 100644 index 0000000..877725d --- /dev/null +++ b/openv0_server/library/lucide/calendar-check-2.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "date", + "time", + "event", + "confirm", + "subscribe", + "done", + "todo", + "tick", + "complete", + "task" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/calendar-check.json b/openv0_server/library/lucide/calendar-check.json new file mode 100644 index 0000000..d3fc818 --- /dev/null +++ b/openv0_server/library/lucide/calendar-check.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "date", + "time", + "event", + "confirm", + "subscribe", + "schedule", + "done", + "todo", + "tick", + "complete", + "task" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/calendar-clock.json b/openv0_server/library/lucide/calendar-clock.json new file mode 100644 index 0000000..9c8be44 --- /dev/null +++ b/openv0_server/library/lucide/calendar-clock.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "date", + "time", + "event", + "clock" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/calendar-days.json b/openv0_server/library/lucide/calendar-days.json new file mode 100644 index 0000000..e5fb6e9 --- /dev/null +++ b/openv0_server/library/lucide/calendar-days.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "date", + "time", + "event" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/calendar-heart.json b/openv0_server/library/lucide/calendar-heart.json new file mode 100644 index 0000000..0c752c1 --- /dev/null +++ b/openv0_server/library/lucide/calendar-heart.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "date", + "time", + "event", + "heart", + "favourite", + "subscribe" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/calendar-minus.json b/openv0_server/library/lucide/calendar-minus.json new file mode 100644 index 0000000..d4fbcb5 --- /dev/null +++ b/openv0_server/library/lucide/calendar-minus.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "date", + "time", + "event", + "delete", + "remove" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/calendar-off.json b/openv0_server/library/lucide/calendar-off.json new file mode 100644 index 0000000..d4fbcb5 --- /dev/null +++ b/openv0_server/library/lucide/calendar-off.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "date", + "time", + "event", + "delete", + "remove" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/calendar-plus.json b/openv0_server/library/lucide/calendar-plus.json new file mode 100644 index 0000000..cd0d3dd --- /dev/null +++ b/openv0_server/library/lucide/calendar-plus.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "date", + "time", + "event", + "add", + "subscribe", + "create", + "new" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/calendar-range.json b/openv0_server/library/lucide/calendar-range.json new file mode 100644 index 0000000..c7bb9e3 --- /dev/null +++ b/openv0_server/library/lucide/calendar-range.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "date", + "time", + "event", + "range", + "period" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/calendar-search.json b/openv0_server/library/lucide/calendar-search.json new file mode 100644 index 0000000..6f385ba --- /dev/null +++ b/openv0_server/library/lucide/calendar-search.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "date", + "time", + "search", + "events" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/calendar-x-2.json b/openv0_server/library/lucide/calendar-x-2.json new file mode 100644 index 0000000..b59a53a --- /dev/null +++ b/openv0_server/library/lucide/calendar-x-2.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "date", + "time", + "event", + "remove" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/calendar-x.json b/openv0_server/library/lucide/calendar-x.json new file mode 100644 index 0000000..b124a98 --- /dev/null +++ b/openv0_server/library/lucide/calendar-x.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "date", + "time", + "event", + "remove", + "busy" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/calendar.json b/openv0_server/library/lucide/calendar.json new file mode 100644 index 0000000..5bdbf1f --- /dev/null +++ b/openv0_server/library/lucide/calendar.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "date", + "birthdate", + "birthday", + "time", + "event" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/camera-off.json b/openv0_server/library/lucide/camera-off.json new file mode 100644 index 0000000..587fd86 --- /dev/null +++ b/openv0_server/library/lucide/camera-off.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "lscheibel", + "Andreto", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "photo", + "webcam", + "video" + ], + "categories": [ + "photography", + "devices", + "communication" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/camera.json b/openv0_server/library/lucide/camera.json new file mode 100644 index 0000000..d93c620 --- /dev/null +++ b/openv0_server/library/lucide/camera.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "lscheibel", + "ericfennis" + ], + "tags": [ + "photo", + "webcam", + "video" + ], + "categories": [ + "photography", + "devices", + "communication" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/candlestick-chart.json b/openv0_server/library/lucide/candlestick-chart.json new file mode 100644 index 0000000..e067bdd --- /dev/null +++ b/openv0_server/library/lucide/candlestick-chart.json @@ -0,0 +1,26 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "trading", + "trader", + "financial", + "markets", + "portfolio", + "assets", + "prices", + "value", + "valuation", + "commodities", + "currencies", + "currency", + "exchange", + "hedge fund", + "statistics", + "diagram", + "graph" + ], + "categories": [ + "charts", + "money" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/candy-cane.json b/openv0_server/library/lucide/candy-cane.json new file mode 100644 index 0000000..c31fba7 --- /dev/null +++ b/openv0_server/library/lucide/candy-cane.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "sugar", + "food", + "sweet", + "christmas", + "xmas" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/candy-off.json b/openv0_server/library/lucide/candy-off.json new file mode 100644 index 0000000..f0101f5 --- /dev/null +++ b/openv0_server/library/lucide/candy-off.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "sugar free", + "food", + "sweet", + "allergy", + "intolerance", + "diet" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/candy.json b/openv0_server/library/lucide/candy.json new file mode 100644 index 0000000..7da4cf8 --- /dev/null +++ b/openv0_server/library/lucide/candy.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "sugar", + "food", + "sweet" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/car-front.json b/openv0_server/library/lucide/car-front.json new file mode 100644 index 0000000..20f32a9 --- /dev/null +++ b/openv0_server/library/lucide/car-front.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "vehicle", + "drive", + "trip", + "journey" + ], + "categories": [ + "transportation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/car-taxi-front.json b/openv0_server/library/lucide/car-taxi-front.json new file mode 100644 index 0000000..04664fb --- /dev/null +++ b/openv0_server/library/lucide/car-taxi-front.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "cab", + "vehicle", + "drive", + "trip", + "journey" + ], + "categories": [ + "transportation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/car.json b/openv0_server/library/lucide/car.json new file mode 100644 index 0000000..1d2503c --- /dev/null +++ b/openv0_server/library/lucide/car.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ahtohbi4", + "ericfennis", + "Andreto" + ], + "tags": [ + "vehicle", + "drive", + "trip", + "journey" + ], + "categories": [ + "transportation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/carrot.json b/openv0_server/library/lucide/carrot.json new file mode 100644 index 0000000..24babac --- /dev/null +++ b/openv0_server/library/lucide/carrot.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "mittalyashu", + "ericfennis" + ], + "tags": [ + "vegetable", + "food", + "eat" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/case-lower.json b/openv0_server/library/lucide/case-lower.json new file mode 100644 index 0000000..9adea42 --- /dev/null +++ b/openv0_server/library/lucide/case-lower.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "text", + "letters", + "characters", + "font", + "typography" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/case-sensitive.json b/openv0_server/library/lucide/case-sensitive.json new file mode 100644 index 0000000..9adea42 --- /dev/null +++ b/openv0_server/library/lucide/case-sensitive.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "text", + "letters", + "characters", + "font", + "typography" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/case-upper.json b/openv0_server/library/lucide/case-upper.json new file mode 100644 index 0000000..2147d3a --- /dev/null +++ b/openv0_server/library/lucide/case-upper.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "text", + "letters", + "characters", + "font", + "typography" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cassette-tape.json b/openv0_server/library/lucide/cassette-tape.json new file mode 100644 index 0000000..40b9a43 --- /dev/null +++ b/openv0_server/library/lucide/cassette-tape.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "audio", + "music", + "recording", + "play" + ], + "categories": [ + "connectivity", + "devices", + "multimedia", + "communication", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cast.json b/openv0_server/library/lucide/cast.json new file mode 100644 index 0000000..aad3a1e --- /dev/null +++ b/openv0_server/library/lucide/cast.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "chromecast", + "airplay", + "screen" + ], + "categories": [ + "devices", + "connectivity" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/castle.json b/openv0_server/library/lucide/castle.json new file mode 100644 index 0000000..52c8def --- /dev/null +++ b/openv0_server/library/lucide/castle.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "fortress", + "stronghold", + "palace", + "chateau", + "building" + ], + "categories": [ + "buildings", + "gaming", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cat.json b/openv0_server/library/lucide/cat.json new file mode 100644 index 0000000..cacc572 --- /dev/null +++ b/openv0_server/library/lucide/cat.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "kemie", + "karsa-mistmere" + ], + "tags": [ + "animal", + "pet", + "kitten", + "feline" + ], + "categories": [ + "animals" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/check-check.json b/openv0_server/library/lucide/check-check.json new file mode 100644 index 0000000..b481936 --- /dev/null +++ b/openv0_server/library/lucide/check-check.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere", + "danielbayley" + ], + "tags": [ + "done", + "received", + "double", + "todo", + "tick", + "complete", + "task" + ], + "categories": [ + "notifications" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/check-circle-2.json b/openv0_server/library/lucide/check-circle-2.json new file mode 100644 index 0000000..91f3ec0 --- /dev/null +++ b/openv0_server/library/lucide/check-circle-2.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "done", + "todo", + "tick", + "complete", + "task" + ], + "categories": [ + "notifications", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/check-circle.json b/openv0_server/library/lucide/check-circle.json new file mode 100644 index 0000000..ffd87b8 --- /dev/null +++ b/openv0_server/library/lucide/check-circle.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "done", + "todo", + "tick", + "complete", + "task" + ], + "categories": [ + "notifications", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/check-square.json b/openv0_server/library/lucide/check-square.json new file mode 100644 index 0000000..ffd87b8 --- /dev/null +++ b/openv0_server/library/lucide/check-square.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "done", + "todo", + "tick", + "complete", + "task" + ], + "categories": [ + "notifications", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/check.json b/openv0_server/library/lucide/check.json new file mode 100644 index 0000000..308ecc4 --- /dev/null +++ b/openv0_server/library/lucide/check.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "done", + "todo", + "tick", + "complete", + "task" + ], + "categories": [ + "notifications" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chef-hat.json b/openv0_server/library/lucide/chef-hat.json new file mode 100644 index 0000000..13e4c48 --- /dev/null +++ b/openv0_server/library/lucide/chef-hat.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "cooking", + "food", + "kitchen", + "restaurant" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cherry.json b/openv0_server/library/lucide/cherry.json new file mode 100644 index 0000000..1bb1288 --- /dev/null +++ b/openv0_server/library/lucide/cherry.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "fruit", + "food" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chevron-down-circle.json b/openv0_server/library/lucide/chevron-down-circle.json new file mode 100644 index 0000000..17be28c --- /dev/null +++ b/openv0_server/library/lucide/chevron-down-circle.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "back", + "menu" + ], + "categories": [ + "arrows", + "navigation", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chevron-down-square.json b/openv0_server/library/lucide/chevron-down-square.json new file mode 100644 index 0000000..b6d2380 --- /dev/null +++ b/openv0_server/library/lucide/chevron-down-square.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "back", + "menu", + "panel" + ], + "categories": [ + "arrows", + "navigation", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chevron-down.json b/openv0_server/library/lucide/chevron-down.json new file mode 100644 index 0000000..23a7018 --- /dev/null +++ b/openv0_server/library/lucide/chevron-down.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "backwards", + "reverse", + "slow" + ], + "categories": [ + "arrows", + "navigation", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chevron-first.json b/openv0_server/library/lucide/chevron-first.json new file mode 100644 index 0000000..a48f405 --- /dev/null +++ b/openv0_server/library/lucide/chevron-first.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "dperezcabrera", + "ericfennis" + ], + "tags": [ + "previous", + "music" + ], + "categories": [ + "arrows", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chevron-last.json b/openv0_server/library/lucide/chevron-last.json new file mode 100644 index 0000000..dc907ab --- /dev/null +++ b/openv0_server/library/lucide/chevron-last.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "dperezcabrera", + "ericfennis" + ], + "tags": [ + "skip", + "next", + "music" + ], + "categories": [ + "arrows", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chevron-left-circle.json b/openv0_server/library/lucide/chevron-left-circle.json new file mode 100644 index 0000000..c03ae39 --- /dev/null +++ b/openv0_server/library/lucide/chevron-left-circle.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "back", + "previous", + "less than", + "fewer", + "menu", + "<" + ], + "categories": [ + "arrows", + "navigation", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chevron-left-square.json b/openv0_server/library/lucide/chevron-left-square.json new file mode 100644 index 0000000..d49adc3 --- /dev/null +++ b/openv0_server/library/lucide/chevron-left-square.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "back", + "previous", + "less than", + "fewer", + "menu", + "panel", + "button", + "keyboard", + "<" + ], + "categories": [ + "arrows", + "navigation", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chevron-left.json b/openv0_server/library/lucide/chevron-left.json new file mode 100644 index 0000000..bfa83fa --- /dev/null +++ b/openv0_server/library/lucide/chevron-left.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "back", + "previous", + "less than", + "fewer", + "menu", + "<" + ], + "categories": [ + "arrows", + "navigation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chevron-right-circle.json b/openv0_server/library/lucide/chevron-right-circle.json new file mode 100644 index 0000000..954dfe2 --- /dev/null +++ b/openv0_server/library/lucide/chevron-right-circle.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "back", + "more than", + "greater", + "menu", + ">" + ], + "categories": [ + "arrows", + "navigation", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chevron-right-square.json b/openv0_server/library/lucide/chevron-right-square.json new file mode 100644 index 0000000..1eeb08a --- /dev/null +++ b/openv0_server/library/lucide/chevron-right-square.json @@ -0,0 +1,29 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "forward", + "next", + "more than", + "greater", + "menu", + "panel", + "code", + "coding", + "command line", + "terminal", + "prompt", + "shell", + "console", + ">" + ], + "categories": [ + "arrows", + "navigation", + "shapes", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chevron-right.json b/openv0_server/library/lucide/chevron-right.json new file mode 100644 index 0000000..3e77ab8 --- /dev/null +++ b/openv0_server/library/lucide/chevron-right.json @@ -0,0 +1,26 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "forward", + "next", + "more than", + "greater", + "menu", + "code", + "coding", + "command line", + "terminal", + "prompt", + "shell", + ">" + ], + "categories": [ + "arrows", + "navigation", + "maths", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chevron-up-circle.json b/openv0_server/library/lucide/chevron-up-circle.json new file mode 100644 index 0000000..52d238a --- /dev/null +++ b/openv0_server/library/lucide/chevron-up-circle.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "caret", + "ahead", + "menu", + "^" + ], + "categories": [ + "arrows", + "navigation", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chevron-up-square.json b/openv0_server/library/lucide/chevron-up-square.json new file mode 100644 index 0000000..1528b43 --- /dev/null +++ b/openv0_server/library/lucide/chevron-up-square.json @@ -0,0 +1,28 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "caret", + "keyboard", + "button", + "mac", + "control", + "ctrl", + "superscript", + "exponential", + "power", + "ahead", + "menu", + "panel", + "^" + ], + "categories": [ + "arrows", + "navigation", + "maths", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chevron-up.json b/openv0_server/library/lucide/chevron-up.json new file mode 100644 index 0000000..6b45b27 --- /dev/null +++ b/openv0_server/library/lucide/chevron-up.json @@ -0,0 +1,25 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "caret", + "keyboard", + "mac", + "control", + "ctrl", + "superscript", + "exponential", + "power", + "ahead", + "fast", + "^" + ], + "categories": [ + "arrows", + "navigation", + "maths", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chevrons-down-up.json b/openv0_server/library/lucide/chevrons-down-up.json new file mode 100644 index 0000000..149abd7 --- /dev/null +++ b/openv0_server/library/lucide/chevrons-down-up.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "PeterlitsZo", + "mittalyashu", + "ericfennis" + ], + "tags": [ + "collapse", + "fold", + "vertical" + ], + "categories": [ + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chevrons-down.json b/openv0_server/library/lucide/chevrons-down.json new file mode 100644 index 0000000..bf6edc1 --- /dev/null +++ b/openv0_server/library/lucide/chevrons-down.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "backwards", + "reverse", + "slower" + ], + "categories": [ + "arrows", + "navigation", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chevrons-left-right.json b/openv0_server/library/lucide/chevrons-left-right.json new file mode 100644 index 0000000..6b84a85 --- /dev/null +++ b/openv0_server/library/lucide/chevrons-left-right.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "expand", + "horizontal", + "unfold" + ], + "categories": [ + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chevrons-left.json b/openv0_server/library/lucide/chevrons-left.json new file mode 100644 index 0000000..1866e8d --- /dev/null +++ b/openv0_server/library/lucide/chevrons-left.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "turn", + "corner" + ], + "categories": [ + "arrows", + "navigation", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chevrons-right-left.json b/openv0_server/library/lucide/chevrons-right-left.json new file mode 100644 index 0000000..265fb2f --- /dev/null +++ b/openv0_server/library/lucide/chevrons-right-left.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "collapse", + "fold", + "horizontal" + ], + "categories": [ + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chevrons-right.json b/openv0_server/library/lucide/chevrons-right.json new file mode 100644 index 0000000..1866e8d --- /dev/null +++ b/openv0_server/library/lucide/chevrons-right.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "turn", + "corner" + ], + "categories": [ + "arrows", + "navigation", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chevrons-up-down.json b/openv0_server/library/lucide/chevrons-up-down.json new file mode 100644 index 0000000..4b70790 --- /dev/null +++ b/openv0_server/library/lucide/chevrons-up-down.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "expand", + "unfold", + "vertical" + ], + "categories": [ + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chevrons-up.json b/openv0_server/library/lucide/chevrons-up.json new file mode 100644 index 0000000..2376a80 --- /dev/null +++ b/openv0_server/library/lucide/chevrons-up.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "forward", + "ahead", + "faster", + "speed", + "boost" + ], + "categories": [ + "arrows", + "navigation", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/chrome.json b/openv0_server/library/lucide/chrome.json new file mode 100644 index 0000000..ff9515a --- /dev/null +++ b/openv0_server/library/lucide/chrome.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "browser", + "logo" + ], + "categories": [ + "brands" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/church.json b/openv0_server/library/lucide/church.json new file mode 100644 index 0000000..a8922c5 --- /dev/null +++ b/openv0_server/library/lucide/church.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "temple", + "building" + ], + "categories": [ + "buildings", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cigarette-off.json b/openv0_server/library/lucide/cigarette-off.json new file mode 100644 index 0000000..644bf8e --- /dev/null +++ b/openv0_server/library/lucide/cigarette-off.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "smoking", + "no-smoking" + ], + "categories": [ + "travel", + "transportation", + "medical" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cigarette.json b/openv0_server/library/lucide/cigarette.json new file mode 100644 index 0000000..28306d6 --- /dev/null +++ b/openv0_server/library/lucide/cigarette.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "smoking" + ], + "categories": [ + "travel", + "transportation", + "medical" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/circle-dashed.json b/openv0_server/library/lucide/circle-dashed.json new file mode 100644 index 0000000..f3587e1 --- /dev/null +++ b/openv0_server/library/lucide/circle-dashed.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "pending", + "dot", + "progress", + "issue", + "draft", + "code", + "coding", + "version control" + ], + "categories": [ + "development", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/circle-dollar-sign.json b/openv0_server/library/lucide/circle-dollar-sign.json new file mode 100644 index 0000000..ec5003c --- /dev/null +++ b/openv0_server/library/lucide/circle-dollar-sign.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "monetization", + "marketing", + "currency", + "money", + "payment" + ], + "categories": [ + "shapes", + "money", + "currency" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/circle-dot-dashed.json b/openv0_server/library/lucide/circle-dot-dashed.json new file mode 100644 index 0000000..f3587e1 --- /dev/null +++ b/openv0_server/library/lucide/circle-dot-dashed.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "pending", + "dot", + "progress", + "issue", + "draft", + "code", + "coding", + "version control" + ], + "categories": [ + "development", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/circle-dot.json b/openv0_server/library/lucide/circle-dot.json new file mode 100644 index 0000000..927dc50 --- /dev/null +++ b/openv0_server/library/lucide/circle-dot.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "pending", + "dot", + "progress", + "issue", + "code", + "coding", + "version control", + "choices", + "multiple choice", + "choose" + ], + "categories": [ + "development", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/circle-ellipsis.json b/openv0_server/library/lucide/circle-ellipsis.json new file mode 100644 index 0000000..0658f66 --- /dev/null +++ b/openv0_server/library/lucide/circle-ellipsis.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "pending", + "ellipsis", + "progress", + "…", + "..." + ], + "categories": [ + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/circle-equal.json b/openv0_server/library/lucide/circle-equal.json new file mode 100644 index 0000000..50ce5f8 --- /dev/null +++ b/openv0_server/library/lucide/circle-equal.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "calculate", + "shape", + "=" + ], + "categories": [ + "maths", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/circle-off.json b/openv0_server/library/lucide/circle-off.json new file mode 100644 index 0000000..c30a903 --- /dev/null +++ b/openv0_server/library/lucide/circle-off.json @@ -0,0 +1,28 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "diameter", + "zero", + "Ø", + "nothing", + "null", + "void", + "cancel", + "ban", + "no", + "stop", + "forbidden", + "prohibited", + "error", + "incorrect", + "mistake", + "wrong", + "failure" + ], + "categories": [ + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/circle-slash-2.json b/openv0_server/library/lucide/circle-slash-2.json new file mode 100644 index 0000000..a021fdd --- /dev/null +++ b/openv0_server/library/lucide/circle-slash-2.json @@ -0,0 +1,29 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "diameter", + "zero", + "Ø", + "nothing", + "null", + "void", + "ban", + "maths", + "divide", + "division", + "half", + "split", + "/" + ], + "categories": [ + "shapes", + "maths", + "development" + ], + "aliases": [ + "circle-slashed" + ] +} diff --git a/openv0_server/library/lucide/circle-slash.json b/openv0_server/library/lucide/circle-slash.json new file mode 100644 index 0000000..469ab32 --- /dev/null +++ b/openv0_server/library/lucide/circle-slash.json @@ -0,0 +1,34 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "diameter", + "zero", + "Ø", + "nothing", + "null", + "void", + "cancel", + "ban", + "no", + "stop", + "forbidden", + "prohibited", + "error", + "incorrect", + "mistake", + "wrong", + "failure", + "divide", + "division", + "or", + "/" + ], + "categories": [ + "shapes", + "development", + "maths" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/circle.json b/openv0_server/library/lucide/circle.json new file mode 100644 index 0000000..967c902 --- /dev/null +++ b/openv0_server/library/lucide/circle.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "off", + "zero", + "record", + "shape" + ], + "categories": [ + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/circuit-board.json b/openv0_server/library/lucide/circuit-board.json new file mode 100644 index 0000000..8c565a0 --- /dev/null +++ b/openv0_server/library/lucide/circuit-board.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas" + ], + "tags": [ + "computing", + "electricity", + "electronics" + ], + "categories": [ + "science", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/citrus.json b/openv0_server/library/lucide/citrus.json new file mode 100644 index 0000000..b9b3655 --- /dev/null +++ b/openv0_server/library/lucide/citrus.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "lemon", + "orange", + "grapefruit", + "fruit" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clapperboard.json b/openv0_server/library/lucide/clapperboard.json new file mode 100644 index 0000000..7ac656c --- /dev/null +++ b/openv0_server/library/lucide/clapperboard.json @@ -0,0 +1,24 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "it-is-not", + "ericfennis", + "danielbayley" + ], + "tags": [ + "movie", + "film", + "video", + "camera", + "cinema", + "cut", + "action", + "television", + "tv", + "show", + "entertainment" + ], + "categories": [ + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clipboard-check.json b/openv0_server/library/lucide/clipboard-check.json new file mode 100644 index 0000000..734c7fd --- /dev/null +++ b/openv0_server/library/lucide/clipboard-check.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "copied", + "pasted", + "done", + "todo", + "tick", + "complete", + "task" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clipboard-copy.json b/openv0_server/library/lucide/clipboard-copy.json new file mode 100644 index 0000000..225e693 --- /dev/null +++ b/openv0_server/library/lucide/clipboard-copy.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "copy", + "paste" + ], + "categories": [ + "text", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clipboard-edit.json b/openv0_server/library/lucide/clipboard-edit.json new file mode 100644 index 0000000..9afa62e --- /dev/null +++ b/openv0_server/library/lucide/clipboard-edit.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "edit", + "paste", + "signature" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clipboard-list.json b/openv0_server/library/lucide/clipboard-list.json new file mode 100644 index 0000000..3d8a2db --- /dev/null +++ b/openv0_server/library/lucide/clipboard-list.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "copy", + "paste", + "tasks" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clipboard-paste.json b/openv0_server/library/lucide/clipboard-paste.json new file mode 100644 index 0000000..ca94b92 --- /dev/null +++ b/openv0_server/library/lucide/clipboard-paste.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "xnousnow", + "ericfennis" + ], + "tags": [ + "copy", + "paste" + ], + "categories": [ + "text", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clipboard-signature.json b/openv0_server/library/lucide/clipboard-signature.json new file mode 100644 index 0000000..d6f9249 --- /dev/null +++ b/openv0_server/library/lucide/clipboard-signature.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "paste", + "signature" + ], + "categories": [ + "text", + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clipboard-type.json b/openv0_server/library/lucide/clipboard-type.json new file mode 100644 index 0000000..12e8f65 --- /dev/null +++ b/openv0_server/library/lucide/clipboard-type.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "paste", + "format", + "text" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clipboard-x.json b/openv0_server/library/lucide/clipboard-x.json new file mode 100644 index 0000000..eaa3693 --- /dev/null +++ b/openv0_server/library/lucide/clipboard-x.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "copy", + "paste", + "discard", + "remove" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clipboard.json b/openv0_server/library/lucide/clipboard.json new file mode 100644 index 0000000..e465a8f --- /dev/null +++ b/openv0_server/library/lucide/clipboard.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "copy", + "paste" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clock-1.json b/openv0_server/library/lucide/clock-1.json new file mode 100644 index 0000000..a992457 --- /dev/null +++ b/openv0_server/library/lucide/clock-1.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "wojtekmaj", + "ericfennis", + "danielbayley" + ], + "tags": [ + "time", + "watch", + "alarm" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clock-10.json b/openv0_server/library/lucide/clock-10.json new file mode 100644 index 0000000..a992457 --- /dev/null +++ b/openv0_server/library/lucide/clock-10.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "wojtekmaj", + "ericfennis", + "danielbayley" + ], + "tags": [ + "time", + "watch", + "alarm" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clock-11.json b/openv0_server/library/lucide/clock-11.json new file mode 100644 index 0000000..a992457 --- /dev/null +++ b/openv0_server/library/lucide/clock-11.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "wojtekmaj", + "ericfennis", + "danielbayley" + ], + "tags": [ + "time", + "watch", + "alarm" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clock-12.json b/openv0_server/library/lucide/clock-12.json new file mode 100644 index 0000000..fa98c3a --- /dev/null +++ b/openv0_server/library/lucide/clock-12.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "wojtekmaj", + "ericfennis", + "danielbayley" + ], + "tags": [ + "time", + "watch", + "alarm", + "noon", + "midnight" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clock-2.json b/openv0_server/library/lucide/clock-2.json new file mode 100644 index 0000000..a992457 --- /dev/null +++ b/openv0_server/library/lucide/clock-2.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "wojtekmaj", + "ericfennis", + "danielbayley" + ], + "tags": [ + "time", + "watch", + "alarm" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clock-3.json b/openv0_server/library/lucide/clock-3.json new file mode 100644 index 0000000..a992457 --- /dev/null +++ b/openv0_server/library/lucide/clock-3.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "wojtekmaj", + "ericfennis", + "danielbayley" + ], + "tags": [ + "time", + "watch", + "alarm" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clock-4.json b/openv0_server/library/lucide/clock-4.json new file mode 100644 index 0000000..f501e8d --- /dev/null +++ b/openv0_server/library/lucide/clock-4.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "wojtekmaj" + ], + "tags": [ + "time", + "watch", + "alarm" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clock-5.json b/openv0_server/library/lucide/clock-5.json new file mode 100644 index 0000000..a992457 --- /dev/null +++ b/openv0_server/library/lucide/clock-5.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "wojtekmaj", + "ericfennis", + "danielbayley" + ], + "tags": [ + "time", + "watch", + "alarm" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clock-6.json b/openv0_server/library/lucide/clock-6.json new file mode 100644 index 0000000..a992457 --- /dev/null +++ b/openv0_server/library/lucide/clock-6.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "wojtekmaj", + "ericfennis", + "danielbayley" + ], + "tags": [ + "time", + "watch", + "alarm" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clock-7.json b/openv0_server/library/lucide/clock-7.json new file mode 100644 index 0000000..a992457 --- /dev/null +++ b/openv0_server/library/lucide/clock-7.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "wojtekmaj", + "ericfennis", + "danielbayley" + ], + "tags": [ + "time", + "watch", + "alarm" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clock-8.json b/openv0_server/library/lucide/clock-8.json new file mode 100644 index 0000000..a992457 --- /dev/null +++ b/openv0_server/library/lucide/clock-8.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "wojtekmaj", + "ericfennis", + "danielbayley" + ], + "tags": [ + "time", + "watch", + "alarm" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clock-9.json b/openv0_server/library/lucide/clock-9.json new file mode 100644 index 0000000..a992457 --- /dev/null +++ b/openv0_server/library/lucide/clock-9.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "wojtekmaj", + "ericfennis", + "danielbayley" + ], + "tags": [ + "time", + "watch", + "alarm" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clock.json b/openv0_server/library/lucide/clock.json new file mode 100644 index 0000000..0bd0b8f --- /dev/null +++ b/openv0_server/library/lucide/clock.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "time", + "watch", + "alarm" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cloud-cog.json b/openv0_server/library/lucide/cloud-cog.json new file mode 100644 index 0000000..544dbae --- /dev/null +++ b/openv0_server/library/lucide/cloud-cog.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "computing", + "ai", + "cluster", + "network" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cloud-drizzle.json b/openv0_server/library/lucide/cloud-drizzle.json new file mode 100644 index 0000000..2a7428d --- /dev/null +++ b/openv0_server/library/lucide/cloud-drizzle.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "weather", + "shower" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cloud-fog.json b/openv0_server/library/lucide/cloud-fog.json new file mode 100644 index 0000000..54309d1 --- /dev/null +++ b/openv0_server/library/lucide/cloud-fog.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere", + "mittalyashu" + ], + "tags": [ + "weather", + "mist" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cloud-hail.json b/openv0_server/library/lucide/cloud-hail.json new file mode 100644 index 0000000..ce23fd9 --- /dev/null +++ b/openv0_server/library/lucide/cloud-hail.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "weather", + "rainfall" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cloud-lightning.json b/openv0_server/library/lucide/cloud-lightning.json new file mode 100644 index 0000000..5cad570 --- /dev/null +++ b/openv0_server/library/lucide/cloud-lightning.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "weather", + "bolt" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cloud-moon-rain.json b/openv0_server/library/lucide/cloud-moon-rain.json new file mode 100644 index 0000000..42269db --- /dev/null +++ b/openv0_server/library/lucide/cloud-moon-rain.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "it-is-not", + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "weather", + "partly", + "night", + "rainfall" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cloud-moon.json b/openv0_server/library/lucide/cloud-moon.json new file mode 100644 index 0000000..ac7f16c --- /dev/null +++ b/openv0_server/library/lucide/cloud-moon.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "weather", + "night" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cloud-off.json b/openv0_server/library/lucide/cloud-off.json new file mode 100644 index 0000000..fb654b3 --- /dev/null +++ b/openv0_server/library/lucide/cloud-off.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "disconnect" + ], + "categories": [ + "connectivity", + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cloud-rain-wind.json b/openv0_server/library/lucide/cloud-rain-wind.json new file mode 100644 index 0000000..ce23fd9 --- /dev/null +++ b/openv0_server/library/lucide/cloud-rain-wind.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "weather", + "rainfall" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cloud-rain.json b/openv0_server/library/lucide/cloud-rain.json new file mode 100644 index 0000000..249cc51 --- /dev/null +++ b/openv0_server/library/lucide/cloud-rain.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "weather", + "rainfall" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cloud-snow.json b/openv0_server/library/lucide/cloud-snow.json new file mode 100644 index 0000000..867af9b --- /dev/null +++ b/openv0_server/library/lucide/cloud-snow.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "weather", + "blizzard" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cloud-sun-rain.json b/openv0_server/library/lucide/cloud-sun-rain.json new file mode 100644 index 0000000..6e24226 --- /dev/null +++ b/openv0_server/library/lucide/cloud-sun-rain.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "it-is-not", + "karsa-mistmere" + ], + "tags": [ + "weather", + "partly", + "rainfall" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cloud-sun.json b/openv0_server/library/lucide/cloud-sun.json new file mode 100644 index 0000000..c629b7e --- /dev/null +++ b/openv0_server/library/lucide/cloud-sun.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "weather", + "partly" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cloud.json b/openv0_server/library/lucide/cloud.json new file mode 100644 index 0000000..cc89c10 --- /dev/null +++ b/openv0_server/library/lucide/cloud.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "weather" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cloudy.json b/openv0_server/library/lucide/cloudy.json new file mode 100644 index 0000000..e49ca3d --- /dev/null +++ b/openv0_server/library/lucide/cloudy.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "weather", + "clouds" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/clover.json b/openv0_server/library/lucide/clover.json new file mode 100644 index 0000000..dceb766 --- /dev/null +++ b/openv0_server/library/lucide/clover.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "csandman" + ], + "tags": [ + "leaf", + "luck", + "plant" + ], + "categories": [ + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/club.json b/openv0_server/library/lucide/club.json new file mode 100644 index 0000000..43d20b7 --- /dev/null +++ b/openv0_server/library/lucide/club.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "shape", + "suit", + "playing", + "cards" + ], + "categories": [ + "shapes", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/code-2.json b/openv0_server/library/lucide/code-2.json new file mode 100644 index 0000000..372b906 --- /dev/null +++ b/openv0_server/library/lucide/code-2.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "mittalyashu" + ], + "tags": [ + "source", + "programming", + "html", + "xml" + ], + "categories": [ + "text", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/code.json b/openv0_server/library/lucide/code.json new file mode 100644 index 0000000..27d7702 --- /dev/null +++ b/openv0_server/library/lucide/code.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "source", + "programming", + "html", + "xml" + ], + "categories": [ + "text", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/codepen.json b/openv0_server/library/lucide/codepen.json new file mode 100644 index 0000000..e0e8fa2 --- /dev/null +++ b/openv0_server/library/lucide/codepen.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "logo" + ], + "categories": [ + "brands", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/codesandbox.json b/openv0_server/library/lucide/codesandbox.json new file mode 100644 index 0000000..68ae126 --- /dev/null +++ b/openv0_server/library/lucide/codesandbox.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "logo" + ], + "categories": [ + "brands", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/coffee.json b/openv0_server/library/lucide/coffee.json new file mode 100644 index 0000000..04b9a25 --- /dev/null +++ b/openv0_server/library/lucide/coffee.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "mittalyashu", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "drink", + "cup", + "mug", + "tea", + "cafe", + "hot", + "beverage" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cog.json b/openv0_server/library/lucide/cog.json new file mode 100644 index 0000000..fba0acb --- /dev/null +++ b/openv0_server/library/lucide/cog.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "karsa-mistmere" + ], + "tags": [ + "computing", + "settings", + "cog", + "edit", + "gear", + "preferences" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/coins.json b/openv0_server/library/lucide/coins.json new file mode 100644 index 0000000..22efa21 --- /dev/null +++ b/openv0_server/library/lucide/coins.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "lscheibel", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "money", + "cash", + "finance", + "gamble" + ], + "categories": [ + "money", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/columns.json b/openv0_server/library/lucide/columns.json new file mode 100644 index 0000000..2bb2c6b --- /dev/null +++ b/openv0_server/library/lucide/columns.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "zenoamaro", + "ericfennis", + "csandman", + "mittalyashu" + ], + "tags": [ + "split", + "parallel", + "vertical", + "horizontal" + ], + "categories": [ + "layout", + "design", + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/combine.json b/openv0_server/library/lucide/combine.json new file mode 100644 index 0000000..5f6ff4c --- /dev/null +++ b/openv0_server/library/lucide/combine.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "cubes", + "packages", + "parts", + "units", + "collection", + "cluster", + "combine", + "gather", + "merge" + ], + "categories": [ + "shapes", + "development", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/command.json b/openv0_server/library/lucide/command.json new file mode 100644 index 0000000..3aec351 --- /dev/null +++ b/openv0_server/library/lucide/command.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "jguddas" + ], + "tags": [ + "keyboard", + "key", + "mac", + "cmd", + "button" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/compass.json b/openv0_server/library/lucide/compass.json new file mode 100644 index 0000000..cc3449c --- /dev/null +++ b/openv0_server/library/lucide/compass.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "direction", + "north", + "east", + "south", + "west", + "safari", + "browser" + ], + "categories": [ + "navigation", + "maps", + "travel" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/component.json b/openv0_server/library/lucide/component.json new file mode 100644 index 0000000..e296e34 --- /dev/null +++ b/openv0_server/library/lucide/component.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "design", + "element", + "group", + "module", + "part", + "symbol" + ], + "categories": [ + "design", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/computer.json b/openv0_server/library/lucide/computer.json new file mode 100644 index 0000000..a5c3a42 --- /dev/null +++ b/openv0_server/library/lucide/computer.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "pc", + "chassis", + "codespaces", + "github" + ], + "categories": [ + "devices", + "development", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/concierge-bell.json b/openv0_server/library/lucide/concierge-bell.json new file mode 100644 index 0000000..27d5130 --- /dev/null +++ b/openv0_server/library/lucide/concierge-bell.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "reception", + "bell", + "porter" + ], + "categories": [ + "travel" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/construction.json b/openv0_server/library/lucide/construction.json new file mode 100644 index 0000000..368a8b3 --- /dev/null +++ b/openv0_server/library/lucide/construction.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis", + "jguddas" + ], + "tags": [ + "roadwork", + "maintenance", + "blockade", + "barricade" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/contact-2.json b/openv0_server/library/lucide/contact-2.json new file mode 100644 index 0000000..d758d45 --- /dev/null +++ b/openv0_server/library/lucide/contact-2.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "person", + "user" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/contact.json b/openv0_server/library/lucide/contact.json new file mode 100644 index 0000000..3dcec28 --- /dev/null +++ b/openv0_server/library/lucide/contact.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "lscheibel", + "karsa-mistmere", + "FPDK", + "ericfennis" + ], + "tags": [ + "person", + "user" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/container.json b/openv0_server/library/lucide/container.json new file mode 100644 index 0000000..d360a46 --- /dev/null +++ b/openv0_server/library/lucide/container.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "storage", + "shipping", + "freight", + "supply chain", + "docker", + "environment", + "devops", + "code", + "coding" + ], + "categories": [ + "development", + "transportation", + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/contrast.json b/openv0_server/library/lucide/contrast.json new file mode 100644 index 0000000..fd07774 --- /dev/null +++ b/openv0_server/library/lucide/contrast.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "lscheibel", + "csandman", + "ericfennis" + ], + "tags": [ + "display", + "accessibility" + ], + "categories": [ + "photography", + "accessibility", + "design" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cookie.json b/openv0_server/library/lucide/cookie.json new file mode 100644 index 0000000..9c8c650 --- /dev/null +++ b/openv0_server/library/lucide/cookie.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "it-is-not", + "ericfennis" + ], + "tags": [ + "biscuit", + "privacy", + "legal", + "food" + ], + "categories": [ + "account", + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/copy-check.json b/openv0_server/library/lucide/copy-check.json new file mode 100644 index 0000000..f6a6982 --- /dev/null +++ b/openv0_server/library/lucide/copy-check.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas" + ], + "tags": [ + "clone", + "duplicate", + "done", + "multiple" + ], + "categories": [ + "text", + "notifications" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/copy-minus.json b/openv0_server/library/lucide/copy-minus.json new file mode 100644 index 0000000..daa1843 --- /dev/null +++ b/openv0_server/library/lucide/copy-minus.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas" + ], + "tags": [ + "clone", + "duplicate", + "remove", + "delete", + "collapse", + "subtract", + "multiple", + "-" + ], + "categories": [ + "text", + "maths" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/copy-plus.json b/openv0_server/library/lucide/copy-plus.json new file mode 100644 index 0000000..48eaee4 --- /dev/null +++ b/openv0_server/library/lucide/copy-plus.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas" + ], + "tags": [ + "clone", + "duplicate", + "add", + "multiple", + "expand", + "+" + ], + "categories": [ + "text", + "maths" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/copy-slash.json b/openv0_server/library/lucide/copy-slash.json new file mode 100644 index 0000000..f146a6c --- /dev/null +++ b/openv0_server/library/lucide/copy-slash.json @@ -0,0 +1,29 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas" + ], + "tags": [ + "clone", + "duplicate", + "cancel", + "ban", + "no", + "stop", + "forbidden", + "prohibited", + "error", + "multiple", + "divide", + "division", + "split", + "or", + "/" + ], + "categories": [ + "text", + "development", + "maths" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/copy-x.json b/openv0_server/library/lucide/copy-x.json new file mode 100644 index 0000000..900de10 --- /dev/null +++ b/openv0_server/library/lucide/copy-x.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas" + ], + "tags": [ + "cancel", + "close", + "delete", + "remove", + "clear", + "multiple", + "multiply", + "multiplication", + "times" + ], + "categories": [ + "notifications", + "maths" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/copy.json b/openv0_server/library/lucide/copy.json new file mode 100644 index 0000000..7d84179 --- /dev/null +++ b/openv0_server/library/lucide/copy.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "danielbayley", + "jguddas" + ], + "tags": [ + "clone", + "duplicate", + "multiple" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/copyleft.json b/openv0_server/library/lucide/copyleft.json new file mode 100644 index 0000000..70a0bb7 --- /dev/null +++ b/openv0_server/library/lucide/copyleft.json @@ -0,0 +1,12 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "johnletey", + "csandman" + ], + "tags": [ + "licence" + ], + "categories": [] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/copyright.json b/openv0_server/library/lucide/copyright.json new file mode 100644 index 0000000..3c53a54 --- /dev/null +++ b/openv0_server/library/lucide/copyright.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "johnletey", + "csandman" + ], + "tags": [ + "licence", + "license" + ], + "categories": [] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/corner-down-left.json b/openv0_server/library/lucide/corner-down-left.json new file mode 100644 index 0000000..d5feb2f --- /dev/null +++ b/openv0_server/library/lucide/corner-down-left.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "arrow", + "return" + ], + "categories": [ + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/corner-down-right.json b/openv0_server/library/lucide/corner-down-right.json new file mode 100644 index 0000000..6d4e58d --- /dev/null +++ b/openv0_server/library/lucide/corner-down-right.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "arrow", + "indent", + "tab" + ], + "categories": [ + "arrows", + "text", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/corner-left-down.json b/openv0_server/library/lucide/corner-left-down.json new file mode 100644 index 0000000..0defc8c --- /dev/null +++ b/openv0_server/library/lucide/corner-left-down.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "arrow" + ], + "categories": [ + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/corner-left-up.json b/openv0_server/library/lucide/corner-left-up.json new file mode 100644 index 0000000..0defc8c --- /dev/null +++ b/openv0_server/library/lucide/corner-left-up.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "arrow" + ], + "categories": [ + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/corner-right-down.json b/openv0_server/library/lucide/corner-right-down.json new file mode 100644 index 0000000..0defc8c --- /dev/null +++ b/openv0_server/library/lucide/corner-right-down.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "arrow" + ], + "categories": [ + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/corner-right-up.json b/openv0_server/library/lucide/corner-right-up.json new file mode 100644 index 0000000..0defc8c --- /dev/null +++ b/openv0_server/library/lucide/corner-right-up.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "arrow" + ], + "categories": [ + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/corner-up-left.json b/openv0_server/library/lucide/corner-up-left.json new file mode 100644 index 0000000..0defc8c --- /dev/null +++ b/openv0_server/library/lucide/corner-up-left.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "arrow" + ], + "categories": [ + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/corner-up-right.json b/openv0_server/library/lucide/corner-up-right.json new file mode 100644 index 0000000..0defc8c --- /dev/null +++ b/openv0_server/library/lucide/corner-up-right.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "arrow" + ], + "categories": [ + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cpu.json b/openv0_server/library/lucide/cpu.json new file mode 100644 index 0000000..1e78079 --- /dev/null +++ b/openv0_server/library/lucide/cpu.json @@ -0,0 +1,25 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "karsa-mistmere", + "ericfennis", + "jguddas" + ], + "tags": [ + "processor", + "cores", + "technology", + "computer", + "chip", + "circuit", + "memory", + "ram", + "specs", + "gigahertz", + "ghz" + ], + "categories": [ + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/creative-commons.json b/openv0_server/library/lucide/creative-commons.json new file mode 100644 index 0000000..f078ad6 --- /dev/null +++ b/openv0_server/library/lucide/creative-commons.json @@ -0,0 +1,11 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "licence", + "license" + ], + "categories": [] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/credit-card.json b/openv0_server/library/lucide/credit-card.json new file mode 100644 index 0000000..d574e1c --- /dev/null +++ b/openv0_server/library/lucide/credit-card.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "bank", + "purchase", + "payment", + "cc" + ], + "categories": [ + "account", + "money" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/croissant.json b/openv0_server/library/lucide/croissant.json new file mode 100644 index 0000000..3a69245 --- /dev/null +++ b/openv0_server/library/lucide/croissant.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "bakery", + "cooking", + "food", + "pastry" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/crop.json b/openv0_server/library/lucide/crop.json new file mode 100644 index 0000000..daedba6 --- /dev/null +++ b/openv0_server/library/lucide/crop.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "photo", + "image" + ], + "categories": [ + "photography", + "design" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cross.json b/openv0_server/library/lucide/cross.json new file mode 100644 index 0000000..5f3165c --- /dev/null +++ b/openv0_server/library/lucide/cross.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "lscheibel", + "ericfennis" + ], + "tags": [ + "healthcare", + "first aid" + ], + "categories": [ + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/crosshair.json b/openv0_server/library/lucide/crosshair.json new file mode 100644 index 0000000..c5ed66f --- /dev/null +++ b/openv0_server/library/lucide/crosshair.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "aim", + "target" + ], + "categories": [ + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/crown.json b/openv0_server/library/lucide/crown.json new file mode 100644 index 0000000..af46d07 --- /dev/null +++ b/openv0_server/library/lucide/crown.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ahtohbi4", + "ericfennis", + "csandman" + ], + "tags": [ + "king", + "winner", + "favourite" + ], + "categories": [ + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/cup-soda.json b/openv0_server/library/lucide/cup-soda.json new file mode 100644 index 0000000..175957f --- /dev/null +++ b/openv0_server/library/lucide/cup-soda.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis", + "jguddas" + ], + "tags": [ + "beverage", + "cup", + "drink", + "soda", + "straw", + "water" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/currency.json b/openv0_server/library/lucide/currency.json new file mode 100644 index 0000000..81f7d6f --- /dev/null +++ b/openv0_server/library/lucide/currency.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "connium", + "ericfennis" + ], + "tags": [ + "finance", + "money" + ], + "categories": [ + "currency", + "money" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/database-backup.json b/openv0_server/library/lucide/database-backup.json new file mode 100644 index 0000000..7d3deeb --- /dev/null +++ b/openv0_server/library/lucide/database-backup.json @@ -0,0 +1,27 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "jguddas", + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "storage", + "memory", + "bytes", + "servers", + "backup", + "timemachine", + "rotate", + "arrow", + "left" + ], + "categories": [ + "devices", + "arrows", + "design", + "development", + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/database-zap.json b/openv0_server/library/lucide/database-zap.json new file mode 100644 index 0000000..6799420 --- /dev/null +++ b/openv0_server/library/lucide/database-zap.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "cache busting", + "storage", + "memory", + "bytes", + "servers", + "power", + "crash" + ], + "categories": [ + "devices", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/database.json b/openv0_server/library/lucide/database.json new file mode 100644 index 0000000..19fd0d7 --- /dev/null +++ b/openv0_server/library/lucide/database.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "jguddas" + ], + "tags": [ + "storage", + "memory", + "bytes", + "servers" + ], + "categories": [ + "devices", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/delete.json b/openv0_server/library/lucide/delete.json new file mode 100644 index 0000000..3362b7c --- /dev/null +++ b/openv0_server/library/lucide/delete.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "backspace", + "remove" + ], + "categories": [ + "text", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/dessert.json b/openv0_server/library/lucide/dessert.json new file mode 100644 index 0000000..7410f28 --- /dev/null +++ b/openv0_server/library/lucide/dessert.json @@ -0,0 +1,24 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "pudding", + "christmas", + "xmas", + "custard", + "iced bun", + "icing", + "fondant", + "cake", + "ice cream", + "gelato", + "sundae", + "scoop", + "dollop", + "sugar", + "food", + "sweet" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/diamond.json b/openv0_server/library/lucide/diamond.json new file mode 100644 index 0000000..c505c4b --- /dev/null +++ b/openv0_server/library/lucide/diamond.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis", + "jguddas" + ], + "tags": [ + "square", + "rectangle", + "oblique", + "rhombus", + "shape", + "suit", + "playing", + "cards" + ], + "categories": [ + "shapes", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/dice-1.json b/openv0_server/library/lucide/dice-1.json new file mode 100644 index 0000000..7a14344 --- /dev/null +++ b/openv0_server/library/lucide/dice-1.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "dice", + "random", + "tabletop", + "1", + "board", + "game" + ], + "categories": [ + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/dice-2.json b/openv0_server/library/lucide/dice-2.json new file mode 100644 index 0000000..c736eef --- /dev/null +++ b/openv0_server/library/lucide/dice-2.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "dice", + "random", + "tabletop", + "2", + "board", + "game" + ], + "categories": [ + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/dice-3.json b/openv0_server/library/lucide/dice-3.json new file mode 100644 index 0000000..9b1de82 --- /dev/null +++ b/openv0_server/library/lucide/dice-3.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "dice", + "random", + "tabletop", + "3", + "board", + "game" + ], + "categories": [ + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/dice-4.json b/openv0_server/library/lucide/dice-4.json new file mode 100644 index 0000000..b327905 --- /dev/null +++ b/openv0_server/library/lucide/dice-4.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "dice", + "random", + "tabletop", + "4", + "board", + "game" + ], + "categories": [ + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/dice-5.json b/openv0_server/library/lucide/dice-5.json new file mode 100644 index 0000000..37d105d --- /dev/null +++ b/openv0_server/library/lucide/dice-5.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "dice", + "random", + "tabletop", + "5", + "board", + "game" + ], + "categories": [ + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/dice-6.json b/openv0_server/library/lucide/dice-6.json new file mode 100644 index 0000000..e5fdbda --- /dev/null +++ b/openv0_server/library/lucide/dice-6.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "dice", + "random", + "tabletop", + "6", + "board", + "game" + ], + "categories": [ + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/dices.json b/openv0_server/library/lucide/dices.json new file mode 100644 index 0000000..4a3180b --- /dev/null +++ b/openv0_server/library/lucide/dices.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "dice", + "random", + "tabletop", + "board", + "game" + ], + "categories": [ + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/diff.json b/openv0_server/library/lucide/diff.json new file mode 100644 index 0000000..846ac96 --- /dev/null +++ b/openv0_server/library/lucide/diff.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "danielbayley" + ], + "tags": [ + "patch", + "difference", + "plus", + "minus", + "plus-minus", + "maths" + ], + "categories": [ + "development", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/disc-2.json b/openv0_server/library/lucide/disc-2.json new file mode 100644 index 0000000..19c7cd9 --- /dev/null +++ b/openv0_server/library/lucide/disc-2.json @@ -0,0 +1,25 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas", + "ericfennis" + ], + "tags": [ + "album", + "music", + "vinyl", + "record", + "cd", + "dvd", + "format", + "dj", + "spin", + "rotate", + "rpm" + ], + "categories": [ + "devices", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/disc-3.json b/openv0_server/library/lucide/disc-3.json new file mode 100644 index 0000000..b54f613 --- /dev/null +++ b/openv0_server/library/lucide/disc-3.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "album", + "music", + "vinyl", + "record", + "cd", + "dvd", + "format", + "dj", + "spin", + "rotate", + "rpm" + ], + "categories": [ + "devices", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/disc.json b/openv0_server/library/lucide/disc.json new file mode 100644 index 0000000..2efd26e --- /dev/null +++ b/openv0_server/library/lucide/disc.json @@ -0,0 +1,24 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "danielbayley", + "jguddas", + "ericfennis" + ], + "tags": [ + "album", + "music", + "cd", + "dvd", + "format", + "dj", + "spin", + "rotate", + "rpm" + ], + "categories": [ + "devices", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/divide-circle.json b/openv0_server/library/lucide/divide-circle.json new file mode 100644 index 0000000..8cc4a05 --- /dev/null +++ b/openv0_server/library/lucide/divide-circle.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "csandman", + "ericfennis" + ], + "tags": [ + "calculate", + "maths", + "÷", + "/" + ], + "categories": [ + "maths", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/divide-square.json b/openv0_server/library/lucide/divide-square.json new file mode 100644 index 0000000..8cc4a05 --- /dev/null +++ b/openv0_server/library/lucide/divide-square.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "csandman", + "ericfennis" + ], + "tags": [ + "calculate", + "maths", + "÷", + "/" + ], + "categories": [ + "maths", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/divide.json b/openv0_server/library/lucide/divide.json new file mode 100644 index 0000000..f873815 --- /dev/null +++ b/openv0_server/library/lucide/divide.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "csandman", + "ericfennis" + ], + "tags": [ + "calculate", + "maths", + "division", + "operator", + "code", + "÷", + "/" + ], + "categories": [ + "maths", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/dna-off.json b/openv0_server/library/lucide/dna-off.json new file mode 100644 index 0000000..42ab711 --- /dev/null +++ b/openv0_server/library/lucide/dna-off.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "gene", + "gmo free", + "helix", + "heredity", + "chromosome", + "nucleic acid" + ], + "categories": [ + "medical", + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/dna.json b/openv0_server/library/lucide/dna.json new file mode 100644 index 0000000..95db819 --- /dev/null +++ b/openv0_server/library/lucide/dna.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "gene", + "gmo", + "helix", + "heredity", + "chromosome", + "nucleic acid" + ], + "categories": [ + "medical" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/dog.json b/openv0_server/library/lucide/dog.json new file mode 100644 index 0000000..d9e5497 --- /dev/null +++ b/openv0_server/library/lucide/dog.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "kemie", + "karsa-mistmere" + ], + "tags": [ + "animal", + "pet", + "puppy", + "hound", + "canine" + ], + "categories": [ + "animals" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/dollar-sign.json b/openv0_server/library/lucide/dollar-sign.json new file mode 100644 index 0000000..af3ee3f --- /dev/null +++ b/openv0_server/library/lucide/dollar-sign.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "currency", + "money", + "payment" + ], + "categories": [ + "currency", + "money" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/donut.json b/openv0_server/library/lucide/donut.json new file mode 100644 index 0000000..cec4dcb --- /dev/null +++ b/openv0_server/library/lucide/donut.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "doughnut", + "sprinkles", + "topping", + "fast food", + "junk food", + "snack", + "treat", + "sweet", + "sugar", + "dessert", + "hollow", + "ring" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/door-closed.json b/openv0_server/library/lucide/door-closed.json new file mode 100644 index 0000000..b28b003 --- /dev/null +++ b/openv0_server/library/lucide/door-closed.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "entrance", + "entry", + "exit", + "ingress", + "egress", + "gate", + "gateway", + "emergency exit" + ], + "categories": [ + "home", + "travel", + "furniture", + "security" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/door-open.json b/openv0_server/library/lucide/door-open.json new file mode 100644 index 0000000..b28b003 --- /dev/null +++ b/openv0_server/library/lucide/door-open.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "entrance", + "entry", + "exit", + "ingress", + "egress", + "gate", + "gateway", + "emergency exit" + ], + "categories": [ + "home", + "travel", + "furniture", + "security" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/dot.json b/openv0_server/library/lucide/dot.json new file mode 100644 index 0000000..f2cc8c3 --- /dev/null +++ b/openv0_server/library/lucide/dot.json @@ -0,0 +1,29 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "interpunct", + "interpoint", + "middot", + "step", + "punctuation", + "period", + "full stop", + "end", + "finish", + "final", + "characters", + "font", + "typography", + "type", + "center", + "." + ], + "categories": [ + "shapes", + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/download-cloud.json b/openv0_server/library/lucide/download-cloud.json new file mode 100644 index 0000000..7df9574 --- /dev/null +++ b/openv0_server/library/lucide/download-cloud.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "import" + ], + "categories": [ + "arrows", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/download.json b/openv0_server/library/lucide/download.json new file mode 100644 index 0000000..b65f4a9 --- /dev/null +++ b/openv0_server/library/lucide/download.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "import", + "export", + "save" + ], + "categories": [ + "arrows", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/drama.json b/openv0_server/library/lucide/drama.json new file mode 100644 index 0000000..0c44f6e --- /dev/null +++ b/openv0_server/library/lucide/drama.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "drama", + "masks", + "theater", + "theatre", + "entertainment", + "show" + ], + "categories": [ + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/dribbble.json b/openv0_server/library/lucide/dribbble.json new file mode 100644 index 0000000..0179199 --- /dev/null +++ b/openv0_server/library/lucide/dribbble.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ahtohbi4", + "karsa-mistmere" + ], + "tags": [ + "design", + "social" + ], + "categories": [ + "brands", + "social", + "design" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/droplet.json b/openv0_server/library/lucide/droplet.json new file mode 100644 index 0000000..237b4fb --- /dev/null +++ b/openv0_server/library/lucide/droplet.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis", + "csandman", + "johnletey" + ], + "tags": [ + "water", + "weather" + ], + "categories": [ + "weather", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/droplets.json b/openv0_server/library/lucide/droplets.json new file mode 100644 index 0000000..d43d0a7 --- /dev/null +++ b/openv0_server/library/lucide/droplets.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "ericfennis" + ], + "tags": [ + "water", + "humidity", + "weather" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/drumstick.json b/openv0_server/library/lucide/drumstick.json new file mode 100644 index 0000000..6171127 --- /dev/null +++ b/openv0_server/library/lucide/drumstick.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "mittalyashu", + "ericfennis" + ], + "tags": [ + "food", + "chicken", + "meat" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/dumbbell.json b/openv0_server/library/lucide/dumbbell.json new file mode 100644 index 0000000..6ef651d --- /dev/null +++ b/openv0_server/library/lucide/dumbbell.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "barbell", + "weight", + "workout", + "gym" + ], + "categories": [ + "maps", + "sports" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/ear-off.json b/openv0_server/library/lucide/ear-off.json new file mode 100644 index 0000000..546a86c --- /dev/null +++ b/openv0_server/library/lucide/ear-off.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "hearing", + "hard of hearing", + "hearing loss", + "deafness", + "noise", + "silence", + "audio", + "accessibility" + ], + "categories": [ + "medical", + "accessibility" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/ear.json b/openv0_server/library/lucide/ear.json new file mode 100644 index 0000000..8e0788f --- /dev/null +++ b/openv0_server/library/lucide/ear.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "hearing", + "noise", + "audio", + "accessibility" + ], + "categories": [ + "medical", + "accessibility" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/egg-fried.json b/openv0_server/library/lucide/egg-fried.json new file mode 100644 index 0000000..e42c88f --- /dev/null +++ b/openv0_server/library/lucide/egg-fried.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "food", + "breakfast" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/egg-off.json b/openv0_server/library/lucide/egg-off.json new file mode 100644 index 0000000..892368f --- /dev/null +++ b/openv0_server/library/lucide/egg-off.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "egg free", + "vegan", + "hatched", + "bad egg" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/egg.json b/openv0_server/library/lucide/egg.json new file mode 100644 index 0000000..24c0962 --- /dev/null +++ b/openv0_server/library/lucide/egg.json @@ -0,0 +1,26 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "Andreto", + "ericfennis" + ], + "tags": [ + "bird", + "chicken", + "nest", + "hatch", + "shell", + "incubate", + "soft boiled", + "hard", + "breakfast", + "brunch", + "morning", + "easter" + ], + "categories": [ + "food-beverage", + "animals" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/equal-not.json b/openv0_server/library/lucide/equal-not.json new file mode 100644 index 0000000..aab0975 --- /dev/null +++ b/openv0_server/library/lucide/equal-not.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "calculate", + "off", + "maths", + "operator", + "code", + "≠" + ], + "categories": [ + "maths", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/equal.json b/openv0_server/library/lucide/equal.json new file mode 100644 index 0000000..9910209 --- /dev/null +++ b/openv0_server/library/lucide/equal.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "calculate", + "maths", + "operator", + "assignment", + "code", + "=" + ], + "categories": [ + "maths", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/eraser.json b/openv0_server/library/lucide/eraser.json new file mode 100644 index 0000000..e1b6e89 --- /dev/null +++ b/openv0_server/library/lucide/eraser.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "maxwellito", + "karsa-mistmere" + ], + "tags": [ + "pencil", + "drawing", + "undo", + "delete", + "clear" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/euro.json b/openv0_server/library/lucide/euro.json new file mode 100644 index 0000000..c70558d --- /dev/null +++ b/openv0_server/library/lucide/euro.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "mittalyashu" + ], + "tags": [ + "currency", + "money", + "payment" + ], + "categories": [ + "currency", + "money" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/expand.json b/openv0_server/library/lucide/expand.json new file mode 100644 index 0000000..a8cbcf1 --- /dev/null +++ b/openv0_server/library/lucide/expand.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "scale", + "fullscreen" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/external-link.json b/openv0_server/library/lucide/external-link.json new file mode 100644 index 0000000..b17069a --- /dev/null +++ b/openv0_server/library/lucide/external-link.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "outbound" + ], + "categories": [ + "text", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/eye-off.json b/openv0_server/library/lucide/eye-off.json new file mode 100644 index 0000000..5bb2ced --- /dev/null +++ b/openv0_server/library/lucide/eye-off.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "view", + "watch", + "hide", + "hidden" + ], + "categories": [ + "accessibility", + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/eye.json b/openv0_server/library/lucide/eye.json new file mode 100644 index 0000000..30a385e --- /dev/null +++ b/openv0_server/library/lucide/eye.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "view", + "watch" + ], + "categories": [ + "accessibility", + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/facebook.json b/openv0_server/library/lucide/facebook.json new file mode 100644 index 0000000..03db542 --- /dev/null +++ b/openv0_server/library/lucide/facebook.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "logo", + "social" + ], + "categories": [ + "account", + "social", + "brands" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/factory.json b/openv0_server/library/lucide/factory.json new file mode 100644 index 0000000..d39266b --- /dev/null +++ b/openv0_server/library/lucide/factory.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "building", + "business", + "energy", + "industry", + "manufacture", + "sector" + ], + "categories": [ + "buildings" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/fan.json b/openv0_server/library/lucide/fan.json new file mode 100644 index 0000000..cc87a7b --- /dev/null +++ b/openv0_server/library/lucide/fan.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "air", + "cooler", + "ventilation", + "ventilator", + "blower" + ], + "categories": [ + "home" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/fast-forward.json b/openv0_server/library/lucide/fast-forward.json new file mode 100644 index 0000000..2979398 --- /dev/null +++ b/openv0_server/library/lucide/fast-forward.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "music" + ], + "categories": [ + "multimedia", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/feather.json b/openv0_server/library/lucide/feather.json new file mode 100644 index 0000000..1d3f2c0 --- /dev/null +++ b/openv0_server/library/lucide/feather.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "logo" + ], + "categories": [ + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/ferris-wheel.json b/openv0_server/library/lucide/ferris-wheel.json new file mode 100644 index 0000000..cd4b082 --- /dev/null +++ b/openv0_server/library/lucide/ferris-wheel.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "big wheel", + "daisy wheel", + "observation", + "attraction", + "entertainment", + "amusement park", + "theme park", + "funfair" + ], + "categories": [ + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/figma.json b/openv0_server/library/lucide/figma.json new file mode 100644 index 0000000..2c452b3 --- /dev/null +++ b/openv0_server/library/lucide/figma.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "mittalyashu", + "ericfennis" + ], + "tags": [ + "logo", + "design", + "tool" + ], + "categories": [ + "brands", + "design" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-archive.json b/openv0_server/library/lucide/file-archive.json new file mode 100644 index 0000000..b1a8717 --- /dev/null +++ b/openv0_server/library/lucide/file-archive.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "zip", + "package", + "archive" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-audio-2.json b/openv0_server/library/lucide/file-audio-2.json new file mode 100644 index 0000000..b4c3214 --- /dev/null +++ b/openv0_server/library/lucide/file-audio-2.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "music", + "audio", + "sound", + "headphones" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-audio.json b/openv0_server/library/lucide/file-audio.json new file mode 100644 index 0000000..b4c3214 --- /dev/null +++ b/openv0_server/library/lucide/file-audio.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "music", + "audio", + "sound", + "headphones" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-axis-3d.json b/openv0_server/library/lucide/file-axis-3d.json new file mode 100644 index 0000000..da6023e --- /dev/null +++ b/openv0_server/library/lucide/file-axis-3d.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "model", + "3d", + "axis", + "coordinates" + ], + "categories": [ + "design", + "files" + ], + "aliases": [ + "file-axis-3-d" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-badge-2.json b/openv0_server/library/lucide/file-badge-2.json new file mode 100644 index 0000000..93c8b15 --- /dev/null +++ b/openv0_server/library/lucide/file-badge-2.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "award", + "achievement", + "badge", + "rosette", + "prize", + "winner" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-badge.json b/openv0_server/library/lucide/file-badge.json new file mode 100644 index 0000000..93c8b15 --- /dev/null +++ b/openv0_server/library/lucide/file-badge.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "award", + "achievement", + "badge", + "rosette", + "prize", + "winner" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-bar-chart-2.json b/openv0_server/library/lucide/file-bar-chart-2.json new file mode 100644 index 0000000..a439bf0 --- /dev/null +++ b/openv0_server/library/lucide/file-bar-chart-2.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "statistics", + "diagram", + "graph", + "presentation" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-bar-chart.json b/openv0_server/library/lucide/file-bar-chart.json new file mode 100644 index 0000000..a439bf0 --- /dev/null +++ b/openv0_server/library/lucide/file-bar-chart.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "statistics", + "diagram", + "graph", + "presentation" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-box.json b/openv0_server/library/lucide/file-box.json new file mode 100644 index 0000000..04f3406 --- /dev/null +++ b/openv0_server/library/lucide/file-box.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "box", + "package", + "model" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-check-2.json b/openv0_server/library/lucide/file-check-2.json new file mode 100644 index 0000000..b233723 --- /dev/null +++ b/openv0_server/library/lucide/file-check-2.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "done", + "document", + "todo", + "tick", + "complete", + "task" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-check.json b/openv0_server/library/lucide/file-check.json new file mode 100644 index 0000000..897d5be --- /dev/null +++ b/openv0_server/library/lucide/file-check.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "done", + "document", + "todo", + "tick", + "complete", + "task" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-clock.json b/openv0_server/library/lucide/file-clock.json new file mode 100644 index 0000000..d1695b5 --- /dev/null +++ b/openv0_server/library/lucide/file-clock.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "history", + "log", + "clock" + ], + "categories": [ + "files", + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-code-2.json b/openv0_server/library/lucide/file-code-2.json new file mode 100644 index 0000000..afd1145 --- /dev/null +++ b/openv0_server/library/lucide/file-code-2.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "script", + "document", + "html", + "xml", + "property list", + "plist" + ], + "categories": [ + "files", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-code.json b/openv0_server/library/lucide/file-code.json new file mode 100644 index 0000000..5ff9641 --- /dev/null +++ b/openv0_server/library/lucide/file-code.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere", + "danielbayley" + ], + "tags": [ + "script", + "document", + "gist", + "html", + "xml", + "property list", + "plist" + ], + "categories": [ + "files", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-cog.json b/openv0_server/library/lucide/file-cog.json new file mode 100644 index 0000000..3c1c43f --- /dev/null +++ b/openv0_server/library/lucide/file-cog.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "aliases": [ + "file-cog-2" + ], + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "executable", + "settings", + "cog", + "edit", + "gear" + ], + "categories": [ + "files" + ] +} diff --git a/openv0_server/library/lucide/file-diff.json b/openv0_server/library/lucide/file-diff.json new file mode 100644 index 0000000..2f1d9f8 --- /dev/null +++ b/openv0_server/library/lucide/file-diff.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "diff", + "patch" + ], + "categories": [ + "files", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-digit.json b/openv0_server/library/lucide/file-digit.json new file mode 100644 index 0000000..9cf28a0 --- /dev/null +++ b/openv0_server/library/lucide/file-digit.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "number", + "document" + ], + "categories": [ + "files", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-down.json b/openv0_server/library/lucide/file-down.json new file mode 100644 index 0000000..78f36a6 --- /dev/null +++ b/openv0_server/library/lucide/file-down.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "download", + "import", + "export" + ], + "categories": [ + "files", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-edit.json b/openv0_server/library/lucide/file-edit.json new file mode 100644 index 0000000..56ae70d --- /dev/null +++ b/openv0_server/library/lucide/file-edit.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "edit", + "signature" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-heart.json b/openv0_server/library/lucide/file-heart.json new file mode 100644 index 0000000..06260ba --- /dev/null +++ b/openv0_server/library/lucide/file-heart.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "heart", + "favourite", + "bookmark", + "quick link" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-image.json b/openv0_server/library/lucide/file-image.json new file mode 100644 index 0000000..bf7d5e7 --- /dev/null +++ b/openv0_server/library/lucide/file-image.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "image", + "graphics", + "photo", + "picture" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-input.json b/openv0_server/library/lucide/file-input.json new file mode 100644 index 0000000..7a7110d --- /dev/null +++ b/openv0_server/library/lucide/file-input.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "ericfennis", + "karsa-mistmere", + "danielbayley" + ], + "tags": [ + "document" + ], + "categories": [ + "files", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-json-2.json b/openv0_server/library/lucide/file-json-2.json new file mode 100644 index 0000000..6b8cab7 --- /dev/null +++ b/openv0_server/library/lucide/file-json-2.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "code", + "json", + "curly braces", + "curly brackets" + ], + "categories": [ + "files", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-json.json b/openv0_server/library/lucide/file-json.json new file mode 100644 index 0000000..6b8cab7 --- /dev/null +++ b/openv0_server/library/lucide/file-json.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "code", + "json", + "curly braces", + "curly brackets" + ], + "categories": [ + "files", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-key-2.json b/openv0_server/library/lucide/file-key-2.json new file mode 100644 index 0000000..d2e4e90 --- /dev/null +++ b/openv0_server/library/lucide/file-key-2.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "key", + "private", + "public", + "security" + ], + "categories": [ + "files", + "security" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-key.json b/openv0_server/library/lucide/file-key.json new file mode 100644 index 0000000..d2e4e90 --- /dev/null +++ b/openv0_server/library/lucide/file-key.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "key", + "private", + "public", + "security" + ], + "categories": [ + "files", + "security" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-line-chart.json b/openv0_server/library/lucide/file-line-chart.json new file mode 100644 index 0000000..a439bf0 --- /dev/null +++ b/openv0_server/library/lucide/file-line-chart.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "statistics", + "diagram", + "graph", + "presentation" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-lock-2.json b/openv0_server/library/lucide/file-lock-2.json new file mode 100644 index 0000000..d1cb566 --- /dev/null +++ b/openv0_server/library/lucide/file-lock-2.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "lock", + "password", + "security" + ], + "categories": [ + "files", + "security" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-lock.json b/openv0_server/library/lucide/file-lock.json new file mode 100644 index 0000000..d1cb566 --- /dev/null +++ b/openv0_server/library/lucide/file-lock.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "lock", + "password", + "security" + ], + "categories": [ + "files", + "security" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-minus-2.json b/openv0_server/library/lucide/file-minus-2.json new file mode 100644 index 0000000..e54364e --- /dev/null +++ b/openv0_server/library/lucide/file-minus-2.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "document" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-minus.json b/openv0_server/library/lucide/file-minus.json new file mode 100644 index 0000000..2a41656 --- /dev/null +++ b/openv0_server/library/lucide/file-minus.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "delete", + "remove", + "erase", + "document" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-output.json b/openv0_server/library/lucide/file-output.json new file mode 100644 index 0000000..7a7110d --- /dev/null +++ b/openv0_server/library/lucide/file-output.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "ericfennis", + "karsa-mistmere", + "danielbayley" + ], + "tags": [ + "document" + ], + "categories": [ + "files", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-pie-chart.json b/openv0_server/library/lucide/file-pie-chart.json new file mode 100644 index 0000000..a439bf0 --- /dev/null +++ b/openv0_server/library/lucide/file-pie-chart.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "statistics", + "diagram", + "graph", + "presentation" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-plus-2.json b/openv0_server/library/lucide/file-plus-2.json new file mode 100644 index 0000000..083e81c --- /dev/null +++ b/openv0_server/library/lucide/file-plus-2.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "add", + "create", + "new", + "document" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-plus.json b/openv0_server/library/lucide/file-plus.json new file mode 100644 index 0000000..059c507 --- /dev/null +++ b/openv0_server/library/lucide/file-plus.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "add", + "create", + "new", + "document" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-question.json b/openv0_server/library/lucide/file-question.json new file mode 100644 index 0000000..78cf604 --- /dev/null +++ b/openv0_server/library/lucide/file-question.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "readme", + "help", + "question" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-scan.json b/openv0_server/library/lucide/file-scan.json new file mode 100644 index 0000000..66b8ee8 --- /dev/null +++ b/openv0_server/library/lucide/file-scan.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "scan", + "code", + "qr-code" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-search-2.json b/openv0_server/library/lucide/file-search-2.json new file mode 100644 index 0000000..3aaaae0 --- /dev/null +++ b/openv0_server/library/lucide/file-search-2.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "lost", + "document", + "find", + "browser" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-search.json b/openv0_server/library/lucide/file-search.json new file mode 100644 index 0000000..e9b7df8 --- /dev/null +++ b/openv0_server/library/lucide/file-search.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "lost", + "document", + "find", + "browser" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-signature.json b/openv0_server/library/lucide/file-signature.json new file mode 100644 index 0000000..1ba62d2 --- /dev/null +++ b/openv0_server/library/lucide/file-signature.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "edit", + "signature" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-spreadsheet.json b/openv0_server/library/lucide/file-spreadsheet.json new file mode 100644 index 0000000..bc1db3a --- /dev/null +++ b/openv0_server/library/lucide/file-spreadsheet.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "spreadsheet", + "sheet", + "table" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-stack.json b/openv0_server/library/lucide/file-stack.json new file mode 100644 index 0000000..91bc14b --- /dev/null +++ b/openv0_server/library/lucide/file-stack.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "versions", + "multiple", + "copy", + "documents", + "revisions", + "version control", + "history" + ], + "categories": [ + "files", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-symlink.json b/openv0_server/library/lucide/file-symlink.json new file mode 100644 index 0000000..5f60254 --- /dev/null +++ b/openv0_server/library/lucide/file-symlink.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "symlink", + "symbolic", + "link" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-terminal.json b/openv0_server/library/lucide/file-terminal.json new file mode 100644 index 0000000..03b9f94 --- /dev/null +++ b/openv0_server/library/lucide/file-terminal.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "terminal", + "bash", + "script", + "executable" + ], + "categories": [ + "files", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-text.json b/openv0_server/library/lucide/file-text.json new file mode 100644 index 0000000..b29fd0f --- /dev/null +++ b/openv0_server/library/lucide/file-text.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "data", + "txt", + "pdf", + "document" + ], + "categories": [ + "files", + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-type-2.json b/openv0_server/library/lucide/file-type-2.json new file mode 100644 index 0000000..51ae947 --- /dev/null +++ b/openv0_server/library/lucide/file-type-2.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "font", + "text", + "typography", + "type" + ], + "categories": [ + "files", + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-type.json b/openv0_server/library/lucide/file-type.json new file mode 100644 index 0000000..51ae947 --- /dev/null +++ b/openv0_server/library/lucide/file-type.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "font", + "text", + "typography", + "type" + ], + "categories": [ + "files", + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-up.json b/openv0_server/library/lucide/file-up.json new file mode 100644 index 0000000..ecffcab --- /dev/null +++ b/openv0_server/library/lucide/file-up.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "upload", + "import", + "export" + ], + "categories": [ + "files", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-video-2.json b/openv0_server/library/lucide/file-video-2.json new file mode 100644 index 0000000..86e2f0a --- /dev/null +++ b/openv0_server/library/lucide/file-video-2.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "movie", + "video", + "film" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-video.json b/openv0_server/library/lucide/file-video.json new file mode 100644 index 0000000..e486b1c --- /dev/null +++ b/openv0_server/library/lucide/file-video.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "movie", + "video", + "film" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-volume-2.json b/openv0_server/library/lucide/file-volume-2.json new file mode 100644 index 0000000..2358b0a --- /dev/null +++ b/openv0_server/library/lucide/file-volume-2.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "audio", + "music", + "volume" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-volume.json b/openv0_server/library/lucide/file-volume.json new file mode 100644 index 0000000..5c22f51 --- /dev/null +++ b/openv0_server/library/lucide/file-volume.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "audio", + "music", + "volume" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-warning.json b/openv0_server/library/lucide/file-warning.json new file mode 100644 index 0000000..998bd11 --- /dev/null +++ b/openv0_server/library/lucide/file-warning.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "hidden", + "warning", + "alert", + "danger", + "protected", + "exclamation mark" + ], + "categories": [ + "files", + "notifications" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-x-2.json b/openv0_server/library/lucide/file-x-2.json new file mode 100644 index 0000000..09eaf79 --- /dev/null +++ b/openv0_server/library/lucide/file-x-2.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "lost", + "delete", + "remove", + "document" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file-x.json b/openv0_server/library/lucide/file-x.json new file mode 100644 index 0000000..09eaf79 --- /dev/null +++ b/openv0_server/library/lucide/file-x.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "lost", + "delete", + "remove", + "document" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/file.json b/openv0_server/library/lucide/file.json new file mode 100644 index 0000000..f651bdb --- /dev/null +++ b/openv0_server/library/lucide/file.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "document" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/files.json b/openv0_server/library/lucide/files.json new file mode 100644 index 0000000..744505b --- /dev/null +++ b/openv0_server/library/lucide/files.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "multiple", + "copy", + "documents" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/film.json b/openv0_server/library/lucide/film.json new file mode 100644 index 0000000..8f45c86 --- /dev/null +++ b/openv0_server/library/lucide/film.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis", + "danielbayley" + ], + "tags": [ + "movie", + "video", + "reel", + "camera", + "cinema", + "entertainment" + ], + "categories": [ + "photography", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/filter-x.json b/openv0_server/library/lucide/filter-x.json new file mode 100644 index 0000000..64ecf0b --- /dev/null +++ b/openv0_server/library/lucide/filter-x.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "gubser", + "ericfennis" + ], + "tags": [ + "funnel", + "hopper" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/filter.json b/openv0_server/library/lucide/filter.json new file mode 100644 index 0000000..1545568 --- /dev/null +++ b/openv0_server/library/lucide/filter.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "funnel", + "hopper" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/fingerprint.json b/openv0_server/library/lucide/fingerprint.json new file mode 100644 index 0000000..8ba4584 --- /dev/null +++ b/openv0_server/library/lucide/fingerprint.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "2fa", + "authentication", + "biometric", + "identity", + "security" + ], + "categories": [ + "account", + "security", + "medical", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/fish-off.json b/openv0_server/library/lucide/fish-off.json new file mode 100644 index 0000000..b1d78ca --- /dev/null +++ b/openv0_server/library/lucide/fish-off.json @@ -0,0 +1,27 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "jguddas", + "kemie", + "ericfennis" + ], + "tags": [ + "food", + "dish", + "restaurant", + "course", + "meal", + "seafood", + "animal", + "pet", + "sea", + "marine", + "allergy", + "intolerance", + "diet" + ], + "categories": [ + "food-beverage", + "animals" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/fish-symbol.json b/openv0_server/library/lucide/fish-symbol.json new file mode 100644 index 0000000..d6f7e88 --- /dev/null +++ b/openv0_server/library/lucide/fish-symbol.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "dish", + "restaurant", + "course", + "meal", + "seafood", + "pet", + "sea", + "marine" + ], + "categories": [ + "food-beverage", + "animals" + ] +} diff --git a/openv0_server/library/lucide/fish.json b/openv0_server/library/lucide/fish.json new file mode 100644 index 0000000..0788986 --- /dev/null +++ b/openv0_server/library/lucide/fish.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "kemie" + ], + "tags": [ + "dish", + "restaurant", + "course", + "meal", + "seafood", + "pet", + "sea", + "marine" + ], + "categories": [ + "food-beverage", + "animals" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/flag-off.json b/openv0_server/library/lucide/flag-off.json new file mode 100644 index 0000000..acb6628 --- /dev/null +++ b/openv0_server/library/lucide/flag-off.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "cyberalien", + "ericfennis" + ], + "tags": [ + "unflag" + ], + "categories": [ + "account", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/flag-triangle-left.json b/openv0_server/library/lucide/flag-triangle-left.json new file mode 100644 index 0000000..6541205 --- /dev/null +++ b/openv0_server/library/lucide/flag-triangle-left.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "tidoni", + "ericfennis" + ], + "tags": [ + "report", + "timeline" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/flag-triangle-right.json b/openv0_server/library/lucide/flag-triangle-right.json new file mode 100644 index 0000000..6541205 --- /dev/null +++ b/openv0_server/library/lucide/flag-triangle-right.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "tidoni", + "ericfennis" + ], + "tags": [ + "report", + "timeline" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/flag.json b/openv0_server/library/lucide/flag.json new file mode 100644 index 0000000..5d2f685 --- /dev/null +++ b/openv0_server/library/lucide/flag.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "report" + ], + "categories": [ + "account", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/flame.json b/openv0_server/library/lucide/flame.json new file mode 100644 index 0000000..e08a5f4 --- /dev/null +++ b/openv0_server/library/lucide/flame.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "johnletey", + "csandman" + ], + "tags": [ + "fire", + "lit" + ], + "categories": [ + "weather", + "social", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/flashlight-off.json b/openv0_server/library/lucide/flashlight-off.json new file mode 100644 index 0000000..b470347 --- /dev/null +++ b/openv0_server/library/lucide/flashlight-off.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "ericfennis", + "karsa-mistmere", + "csandman" + ], + "tags": [ + "torch" + ], + "categories": [ + "photography", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/flashlight.json b/openv0_server/library/lucide/flashlight.json new file mode 100644 index 0000000..e2c9282 --- /dev/null +++ b/openv0_server/library/lucide/flashlight.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "csandman", + "ericfennis" + ], + "tags": [ + "torch" + ], + "categories": [ + "photography", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/flask-conical-off.json b/openv0_server/library/lucide/flask-conical-off.json new file mode 100644 index 0000000..6bb846f --- /dev/null +++ b/openv0_server/library/lucide/flask-conical-off.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "beaker", + "erlenmeyer", + "non toxic", + "lab", + "chemistry", + "experiment", + "test" + ], + "categories": [ + "science", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/flask-conical.json b/openv0_server/library/lucide/flask-conical.json new file mode 100644 index 0000000..770c4c6 --- /dev/null +++ b/openv0_server/library/lucide/flask-conical.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "beaker", + "erlenmeyer", + "lab", + "chemistry", + "experiment", + "test" + ], + "categories": [ + "science", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/flask-round.json b/openv0_server/library/lucide/flask-round.json new file mode 100644 index 0000000..4e8f9f8 --- /dev/null +++ b/openv0_server/library/lucide/flask-round.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "ericfennis", + "danielbayley" + ], + "tags": [ + "beaker", + "lab", + "chemistry", + "experiment", + "test" + ], + "categories": [ + "science", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/flip-horizontal-2.json b/openv0_server/library/lucide/flip-horizontal-2.json new file mode 100644 index 0000000..52d169c --- /dev/null +++ b/openv0_server/library/lucide/flip-horizontal-2.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "reflect", + "mirror", + "alignment", + "dashed" + ], + "categories": [ + "design", + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/flip-horizontal.json b/openv0_server/library/lucide/flip-horizontal.json new file mode 100644 index 0000000..52d169c --- /dev/null +++ b/openv0_server/library/lucide/flip-horizontal.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "reflect", + "mirror", + "alignment", + "dashed" + ], + "categories": [ + "design", + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/flip-vertical-2.json b/openv0_server/library/lucide/flip-vertical-2.json new file mode 100644 index 0000000..fa33391 --- /dev/null +++ b/openv0_server/library/lucide/flip-vertical-2.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "reflect", + "mirror", + "alignment", + "dashed" + ], + "categories": [ + "design", + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/flip-vertical.json b/openv0_server/library/lucide/flip-vertical.json new file mode 100644 index 0000000..52d169c --- /dev/null +++ b/openv0_server/library/lucide/flip-vertical.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "reflect", + "mirror", + "alignment", + "dashed" + ], + "categories": [ + "design", + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/flower-2.json b/openv0_server/library/lucide/flower-2.json new file mode 100644 index 0000000..3e1e176 --- /dev/null +++ b/openv0_server/library/lucide/flower-2.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "sustainability", + "nature", + "plant" + ], + "categories": [ + "nature", + "sustainability", + "seasons" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/flower.json b/openv0_server/library/lucide/flower.json new file mode 100644 index 0000000..e58d583 --- /dev/null +++ b/openv0_server/library/lucide/flower.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "sustainability", + "nature", + "plant", + "spring" + ], + "categories": [ + "nature", + "gaming", + "sustainability" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/focus.json b/openv0_server/library/lucide/focus.json new file mode 100644 index 0000000..f08f724 --- /dev/null +++ b/openv0_server/library/lucide/focus.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "danielbayley", + "jguddas", + "ericfennis" + ], + "tags": [ + "camera", + "lens", + "photo", + "dashed" + ], + "categories": [ + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/fold-horizontal.json b/openv0_server/library/lucide/fold-horizontal.json new file mode 100644 index 0000000..647cefd --- /dev/null +++ b/openv0_server/library/lucide/fold-horizontal.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "arrow", + "collapse", + "fold", + "vertical", + "dashed" + ], + "categories": [ + "arrows", + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/fold-vertical.json b/openv0_server/library/lucide/fold-vertical.json new file mode 100644 index 0000000..647cefd --- /dev/null +++ b/openv0_server/library/lucide/fold-vertical.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "arrow", + "collapse", + "fold", + "vertical", + "dashed" + ], + "categories": [ + "arrows", + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-archive.json b/openv0_server/library/lucide/folder-archive.json new file mode 100644 index 0000000..e53e50d --- /dev/null +++ b/openv0_server/library/lucide/folder-archive.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "archive", + "zip", + "package" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-check.json b/openv0_server/library/lucide/folder-check.json new file mode 100644 index 0000000..8a8ceb6 --- /dev/null +++ b/openv0_server/library/lucide/folder-check.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "done", + "directory", + "todo", + "tick", + "complete", + "task" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-clock.json b/openv0_server/library/lucide/folder-clock.json new file mode 100644 index 0000000..9453dfd --- /dev/null +++ b/openv0_server/library/lucide/folder-clock.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "history", + "directory", + "clock" + ], + "categories": [ + "files", + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-closed.json b/openv0_server/library/lucide/folder-closed.json new file mode 100644 index 0000000..a4d3ef8 --- /dev/null +++ b/openv0_server/library/lucide/folder-closed.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "directory", + "closed" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-cog.json b/openv0_server/library/lucide/folder-cog.json new file mode 100644 index 0000000..d148083 --- /dev/null +++ b/openv0_server/library/lucide/folder-cog.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "aliases": [ + "folder-cog-2" + ], + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "directory", + "settings", + "control", + "preferences", + "cog", + "edit", + "gear" + ], + "categories": [ + "files" + ] +} diff --git a/openv0_server/library/lucide/folder-dot.json b/openv0_server/library/lucide/folder-dot.json new file mode 100644 index 0000000..0d1a72e --- /dev/null +++ b/openv0_server/library/lucide/folder-dot.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "directory", + "root", + "project", + "active", + "current", + "pinned" + ], + "categories": [ + "files", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-down.json b/openv0_server/library/lucide/folder-down.json new file mode 100644 index 0000000..d72544d --- /dev/null +++ b/openv0_server/library/lucide/folder-down.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "directory", + "download", + "import", + "export" + ], + "categories": [ + "files", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-edit.json b/openv0_server/library/lucide/folder-edit.json new file mode 100644 index 0000000..9f0bae2 --- /dev/null +++ b/openv0_server/library/lucide/folder-edit.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "directory", + "edit", + "rename" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-git-2.json b/openv0_server/library/lucide/folder-git-2.json new file mode 100644 index 0000000..c146277 --- /dev/null +++ b/openv0_server/library/lucide/folder-git-2.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "directory", + "root", + "project", + "git", + "repo" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-git.json b/openv0_server/library/lucide/folder-git.json new file mode 100644 index 0000000..c146277 --- /dev/null +++ b/openv0_server/library/lucide/folder-git.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "directory", + "root", + "project", + "git", + "repo" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-heart.json b/openv0_server/library/lucide/folder-heart.json new file mode 100644 index 0000000..90f240f --- /dev/null +++ b/openv0_server/library/lucide/folder-heart.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "directory", + "heart", + "favourite", + "bookmark", + "quick link" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-input.json b/openv0_server/library/lucide/folder-input.json new file mode 100644 index 0000000..cc171b2 --- /dev/null +++ b/openv0_server/library/lucide/folder-input.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "directory", + "import", + "export" + ], + "categories": [ + "files", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-kanban.json b/openv0_server/library/lucide/folder-kanban.json new file mode 100644 index 0000000..249d2e7 --- /dev/null +++ b/openv0_server/library/lucide/folder-kanban.json @@ -0,0 +1,31 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "projects", + "manage", + "overview", + "board", + "tickets", + "issues", + "roadmap", + "plan", + "intentions", + "productivity", + "work", + "agile", + "code", + "coding", + "directory", + "project", + "root" + ], + "categories": [ + "charts", + "development", + "design", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-key.json b/openv0_server/library/lucide/folder-key.json new file mode 100644 index 0000000..5faf791 --- /dev/null +++ b/openv0_server/library/lucide/folder-key.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "directory", + "key", + "private", + "security", + "protected" + ], + "categories": [ + "files", + "security" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-lock.json b/openv0_server/library/lucide/folder-lock.json new file mode 100644 index 0000000..dbc878e --- /dev/null +++ b/openv0_server/library/lucide/folder-lock.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "directory", + "lock", + "private", + "security", + "protected" + ], + "categories": [ + "files", + "security" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-minus.json b/openv0_server/library/lucide/folder-minus.json new file mode 100644 index 0000000..50fe3ee --- /dev/null +++ b/openv0_server/library/lucide/folder-minus.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "directory", + "remove", + "delete" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-open-dot.json b/openv0_server/library/lucide/folder-open-dot.json new file mode 100644 index 0000000..0d1a72e --- /dev/null +++ b/openv0_server/library/lucide/folder-open-dot.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "directory", + "root", + "project", + "active", + "current", + "pinned" + ], + "categories": [ + "files", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-open.json b/openv0_server/library/lucide/folder-open.json new file mode 100644 index 0000000..e38e840 --- /dev/null +++ b/openv0_server/library/lucide/folder-open.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "directory" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-output.json b/openv0_server/library/lucide/folder-output.json new file mode 100644 index 0000000..cc171b2 --- /dev/null +++ b/openv0_server/library/lucide/folder-output.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "directory", + "import", + "export" + ], + "categories": [ + "files", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-plus.json b/openv0_server/library/lucide/folder-plus.json new file mode 100644 index 0000000..e37ad98 --- /dev/null +++ b/openv0_server/library/lucide/folder-plus.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "directory", + "add", + "create", + "new" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-root.json b/openv0_server/library/lucide/folder-root.json new file mode 100644 index 0000000..e9e85c2 --- /dev/null +++ b/openv0_server/library/lucide/folder-root.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "directory", + "root", + "project", + "git", + "repo" + ], + "categories": [ + "files", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-search-2.json b/openv0_server/library/lucide/folder-search-2.json new file mode 100644 index 0000000..cb6fc32 --- /dev/null +++ b/openv0_server/library/lucide/folder-search-2.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "directory", + "search", + "find", + "lost", + "browser" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-search.json b/openv0_server/library/lucide/folder-search.json new file mode 100644 index 0000000..cb6fc32 --- /dev/null +++ b/openv0_server/library/lucide/folder-search.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "directory", + "search", + "find", + "lost", + "browser" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-symlink.json b/openv0_server/library/lucide/folder-symlink.json new file mode 100644 index 0000000..b1d6b7b --- /dev/null +++ b/openv0_server/library/lucide/folder-symlink.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "directory", + "symlink", + "symbolic", + "link" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-sync.json b/openv0_server/library/lucide/folder-sync.json new file mode 100644 index 0000000..594f3a3 --- /dev/null +++ b/openv0_server/library/lucide/folder-sync.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "directory", + "synchronize", + "synchronise", + "refresh", + "reconnect", + "transfer", + "backup" + ], + "categories": [ + "files", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-tree.json b/openv0_server/library/lucide/folder-tree.json new file mode 100644 index 0000000..b034369 --- /dev/null +++ b/openv0_server/library/lucide/folder-tree.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "directory", + "tree", + "browser" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-up.json b/openv0_server/library/lucide/folder-up.json new file mode 100644 index 0000000..07bb185 --- /dev/null +++ b/openv0_server/library/lucide/folder-up.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "directory", + "upload", + "import", + "export" + ], + "categories": [ + "files", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder-x.json b/openv0_server/library/lucide/folder-x.json new file mode 100644 index 0000000..5169309 --- /dev/null +++ b/openv0_server/library/lucide/folder-x.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "directory", + "remove", + "delete" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folder.json b/openv0_server/library/lucide/folder.json new file mode 100644 index 0000000..fede20c --- /dev/null +++ b/openv0_server/library/lucide/folder.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "directory" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/folders.json b/openv0_server/library/lucide/folders.json new file mode 100644 index 0000000..3cce51a --- /dev/null +++ b/openv0_server/library/lucide/folders.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "multiple", + "copy", + "directories" + ], + "categories": [ + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/footprints.json b/openv0_server/library/lucide/footprints.json new file mode 100644 index 0000000..b47ed69 --- /dev/null +++ b/openv0_server/library/lucide/footprints.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "steps", + "walking", + "foot", + "feet", + "trail", + "shoe" + ], + "categories": [ + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/forklift.json b/openv0_server/library/lucide/forklift.json new file mode 100644 index 0000000..1094b96 --- /dev/null +++ b/openv0_server/library/lucide/forklift.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "vehicle", + "transport", + "logistics" + ], + "categories": [ + "transportation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/form-input.json b/openv0_server/library/lucide/form-input.json new file mode 100644 index 0000000..37206e4 --- /dev/null +++ b/openv0_server/library/lucide/form-input.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "2fa", + "authenticate", + "login", + "field", + "text" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/forward.json b/openv0_server/library/lucide/forward.json new file mode 100644 index 0000000..9333576 --- /dev/null +++ b/openv0_server/library/lucide/forward.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "ericfennis", + "mittalyashu" + ], + "tags": [ + "send", + "share", + "email" + ], + "categories": [ + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/frame.json b/openv0_server/library/lucide/frame.json new file mode 100644 index 0000000..2aa6758 --- /dev/null +++ b/openv0_server/library/lucide/frame.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Bowero", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "logo", + "design", + "tool" + ], + "categories": [ + "design", + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/framer.json b/openv0_server/library/lucide/framer.json new file mode 100644 index 0000000..2c452b3 --- /dev/null +++ b/openv0_server/library/lucide/framer.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "mittalyashu", + "ericfennis" + ], + "tags": [ + "logo", + "design", + "tool" + ], + "categories": [ + "brands", + "design" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/frown.json b/openv0_server/library/lucide/frown.json new file mode 100644 index 0000000..f648881 --- /dev/null +++ b/openv0_server/library/lucide/frown.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "mittalyashu", + "ericfennis" + ], + "tags": [ + "emoji", + "face", + "bad", + "sad", + "emotion" + ], + "categories": [ + "emoji", + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/fuel.json b/openv0_server/library/lucide/fuel.json new file mode 100644 index 0000000..951f3dd --- /dev/null +++ b/openv0_server/library/lucide/fuel.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "filling-station", + "gas", + "petrol", + "tank" + ], + "categories": [ + "transportation", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/function-square.json b/openv0_server/library/lucide/function-square.json new file mode 100644 index 0000000..0c721df --- /dev/null +++ b/openv0_server/library/lucide/function-square.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "programming", + "code", + "automation", + "maths" + ], + "categories": [ + "development", + "shapes", + "maths" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/gallery-horizontal-end.json b/openv0_server/library/lucide/gallery-horizontal-end.json new file mode 100644 index 0000000..90754d0 --- /dev/null +++ b/openv0_server/library/lucide/gallery-horizontal-end.json @@ -0,0 +1,27 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "carousel", + "pictures", + "images", + "scroll", + "swipe", + "album", + "portfolio", + "history", + "versions", + "backup", + "time machine" + ], + "categories": [ + "layout", + "design", + "development", + "photography", + "multimedia", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/gallery-horizontal.json b/openv0_server/library/lucide/gallery-horizontal.json new file mode 100644 index 0000000..91f9bc1 --- /dev/null +++ b/openv0_server/library/lucide/gallery-horizontal.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "carousel", + "pictures", + "images", + "scroll", + "swipe", + "album", + "portfolio" + ], + "categories": [ + "layout", + "design", + "development", + "photography", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/gallery-thumbnails.json b/openv0_server/library/lucide/gallery-thumbnails.json new file mode 100644 index 0000000..5de568d --- /dev/null +++ b/openv0_server/library/lucide/gallery-thumbnails.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "carousel", + "pictures", + "images", + "album", + "portfolio", + "preview" + ], + "categories": [ + "layout", + "design", + "development", + "photography", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/gallery-vertical-end.json b/openv0_server/library/lucide/gallery-vertical-end.json new file mode 100644 index 0000000..90754d0 --- /dev/null +++ b/openv0_server/library/lucide/gallery-vertical-end.json @@ -0,0 +1,27 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "carousel", + "pictures", + "images", + "scroll", + "swipe", + "album", + "portfolio", + "history", + "versions", + "backup", + "time machine" + ], + "categories": [ + "layout", + "design", + "development", + "photography", + "multimedia", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/gallery-vertical.json b/openv0_server/library/lucide/gallery-vertical.json new file mode 100644 index 0000000..91f9bc1 --- /dev/null +++ b/openv0_server/library/lucide/gallery-vertical.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "carousel", + "pictures", + "images", + "scroll", + "swipe", + "album", + "portfolio" + ], + "categories": [ + "layout", + "design", + "development", + "photography", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/gamepad-2.json b/openv0_server/library/lucide/gamepad-2.json new file mode 100644 index 0000000..52e9c58 --- /dev/null +++ b/openv0_server/library/lucide/gamepad-2.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "csandman", + "johnletey" + ], + "tags": [ + "console" + ], + "categories": [ + "gaming", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/gamepad.json b/openv0_server/library/lucide/gamepad.json new file mode 100644 index 0000000..df6d4fb --- /dev/null +++ b/openv0_server/library/lucide/gamepad.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "johnletey" + ], + "tags": [ + "console" + ], + "categories": [ + "gaming", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/gantt-chart-square.json b/openv0_server/library/lucide/gantt-chart-square.json new file mode 100644 index 0000000..68dfe1f --- /dev/null +++ b/openv0_server/library/lucide/gantt-chart-square.json @@ -0,0 +1,36 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "projects", + "manage", + "overview", + "roadmap", + "plan", + "intentions", + "timeline", + "deadline", + "date", + "event", + "range", + "period", + "productivity", + "work", + "agile", + "code", + "coding", + "toolbar", + "button" + ], + "categories": [ + "charts", + "time", + "development", + "design" + ], + "aliases": [ + "square-gantt" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/gantt-chart.json b/openv0_server/library/lucide/gantt-chart.json new file mode 100644 index 0000000..01ed68c --- /dev/null +++ b/openv0_server/library/lucide/gantt-chart.json @@ -0,0 +1,24 @@ +{ + "$schema": "../icon.schema.json", + "contributors": ["danielbayley"], + "tags": [ + "projects", + "manage", + "overview", + "roadmap", + "plan", + "intentions", + "timeline", + "deadline", + "date", + "event", + "range", + "period", + "productivity", + "work", + "agile", + "code", + "coding" + ], + "categories": ["charts", "time", "development", "design"] +} diff --git a/openv0_server/library/lucide/gauge-circle.json b/openv0_server/library/lucide/gauge-circle.json new file mode 100644 index 0000000..eafd27f --- /dev/null +++ b/openv0_server/library/lucide/gauge-circle.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "dashboard", + "dial", + "meter", + "speed", + "pressure", + "measure", + "level" + ], + "categories": [ + "account", + "transportation", + "sports", + "science" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/gauge.json b/openv0_server/library/lucide/gauge.json new file mode 100644 index 0000000..28e3cf4 --- /dev/null +++ b/openv0_server/library/lucide/gauge.json @@ -0,0 +1,24 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "Andreto", + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "dashboard", + "dial", + "meter", + "speed", + "pressure", + "measure", + "level" + ], + "categories": [ + "account", + "transportation", + "sports", + "science" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/gavel.json b/openv0_server/library/lucide/gavel.json new file mode 100644 index 0000000..5f22343 --- /dev/null +++ b/openv0_server/library/lucide/gavel.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "ericfennis" + ], + "tags": [ + "hammer", + "mallet" + ], + "categories": [ + "maps", + "tools" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/gem.json b/openv0_server/library/lucide/gem.json new file mode 100644 index 0000000..c905fd6 --- /dev/null +++ b/openv0_server/library/lucide/gem.json @@ -0,0 +1,27 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "connium", + "ericfennis" + ], + "tags": [ + "diamond", + "crystal", + "ruby", + "jewellery", + "price", + "special", + "present", + "gift", + "ring", + "wedding", + "proposal", + "marriage", + "rubygems" + ], + "categories": [ + "gaming", + "money", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/ghost.json b/openv0_server/library/lucide/ghost.json new file mode 100644 index 0000000..5da03fa --- /dev/null +++ b/openv0_server/library/lucide/ghost.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "pac-man", + "spooky" + ], + "categories": [ + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/gift.json b/openv0_server/library/lucide/gift.json new file mode 100644 index 0000000..df6d055 --- /dev/null +++ b/openv0_server/library/lucide/gift.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "present", + "box", + "birthday", + "party" + ], + "categories": [ + "gaming", + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/git-branch-plus.json b/openv0_server/library/lucide/git-branch-plus.json new file mode 100644 index 0000000..a6dda4a --- /dev/null +++ b/openv0_server/library/lucide/git-branch-plus.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "add", + "create" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/git-branch.json b/openv0_server/library/lucide/git-branch.json new file mode 100644 index 0000000..68d27e5 --- /dev/null +++ b/openv0_server/library/lucide/git-branch.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "code", + "version control" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/git-commit.json b/openv0_server/library/lucide/git-commit.json new file mode 100644 index 0000000..e5811a1 --- /dev/null +++ b/openv0_server/library/lucide/git-commit.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis", + "johnletey" + ], + "tags": [ + "code", + "version control" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/git-compare.json b/openv0_server/library/lucide/git-compare.json new file mode 100644 index 0000000..bce09b2 --- /dev/null +++ b/openv0_server/library/lucide/git-compare.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "code", + "version control" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/git-fork.json b/openv0_server/library/lucide/git-fork.json new file mode 100644 index 0000000..a50f71a --- /dev/null +++ b/openv0_server/library/lucide/git-fork.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "code", + "version control" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/git-merge.json b/openv0_server/library/lucide/git-merge.json new file mode 100644 index 0000000..68d27e5 --- /dev/null +++ b/openv0_server/library/lucide/git-merge.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "code", + "version control" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/git-pull-request-closed.json b/openv0_server/library/lucide/git-pull-request-closed.json new file mode 100644 index 0000000..cc2d9ab --- /dev/null +++ b/openv0_server/library/lucide/git-pull-request-closed.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "code", + "version control", + "rejected" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/git-pull-request-draft.json b/openv0_server/library/lucide/git-pull-request-draft.json new file mode 100644 index 0000000..cf17e15 --- /dev/null +++ b/openv0_server/library/lucide/git-pull-request-draft.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "code", + "version control", + "draft" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/git-pull-request.json b/openv0_server/library/lucide/git-pull-request.json new file mode 100644 index 0000000..68d27e5 --- /dev/null +++ b/openv0_server/library/lucide/git-pull-request.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "code", + "version control" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/github.json b/openv0_server/library/lucide/github.json new file mode 100644 index 0000000..935104a --- /dev/null +++ b/openv0_server/library/lucide/github.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "logo", + "version control" + ], + "categories": [ + "brands", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/gitlab.json b/openv0_server/library/lucide/gitlab.json new file mode 100644 index 0000000..935104a --- /dev/null +++ b/openv0_server/library/lucide/gitlab.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "logo", + "version control" + ], + "categories": [ + "brands", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/glass-water.json b/openv0_server/library/lucide/glass-water.json new file mode 100644 index 0000000..c46c014 --- /dev/null +++ b/openv0_server/library/lucide/glass-water.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "beverage", + "drink", + "glass", + "water" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/glasses.json b/openv0_server/library/lucide/glasses.json new file mode 100644 index 0000000..f92a1ca --- /dev/null +++ b/openv0_server/library/lucide/glasses.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ahtohbi4", + "ericfennis" + ], + "tags": [ + "glasses", + "spectacles" + ], + "categories": [ + "accessibility" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/globe-2.json b/openv0_server/library/lucide/globe-2.json new file mode 100644 index 0000000..37e4cce --- /dev/null +++ b/openv0_server/library/lucide/globe-2.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "world", + "browser", + "language", + "translate" + ], + "categories": [ + "maps", + "navigation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/globe.json b/openv0_server/library/lucide/globe.json new file mode 100644 index 0000000..038b747 --- /dev/null +++ b/openv0_server/library/lucide/globe.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "world", + "browser", + "language", + "translate" + ], + "categories": [ + "maps", + "navigation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/goal.json b/openv0_server/library/lucide/goal.json new file mode 100644 index 0000000..f4bea50 --- /dev/null +++ b/openv0_server/library/lucide/goal.json @@ -0,0 +1,10 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "flag", + "bullseye" + ], + "categories": [ + "gaming" + ] + } \ No newline at end of file diff --git a/openv0_server/library/lucide/grab.json b/openv0_server/library/lucide/grab.json new file mode 100644 index 0000000..6680f9d --- /dev/null +++ b/openv0_server/library/lucide/grab.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "hand" + ], + "categories": [ + "cursors", + "design", + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/graduation-cap.json b/openv0_server/library/lucide/graduation-cap.json new file mode 100644 index 0000000..a568a3e --- /dev/null +++ b/openv0_server/library/lucide/graduation-cap.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Tummerhore", + "ericfennis" + ], + "tags": [ + "school", + "university", + "learn", + "study" + ], + "categories": [ + "buildings", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/grape.json b/openv0_server/library/lucide/grape.json new file mode 100644 index 0000000..f45c700 --- /dev/null +++ b/openv0_server/library/lucide/grape.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "fruit", + "wine", + "food" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/grid-2x2.json b/openv0_server/library/lucide/grid-2x2.json new file mode 100644 index 0000000..53baa92 --- /dev/null +++ b/openv0_server/library/lucide/grid-2x2.json @@ -0,0 +1,33 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "table", + "rows", + "columns", + "blocks", + "plot", + "land", + "geometry", + "measure", + "size", + "width", + "height", + "distance", + "surface area", + "square meter", + "acre" + ], + "categories": [ + "text", + "layout", + "design", + "shapes", + "maths" + ], + "aliases": [ + "grid-2-x-2" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/grid-3x3.json b/openv0_server/library/lucide/grid-3x3.json new file mode 100644 index 0000000..2bf5651 --- /dev/null +++ b/openv0_server/library/lucide/grid-3x3.json @@ -0,0 +1,24 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "zenoamaro", + "ericfennis", + "csandman", + "mittalyashu" + ], + "tags": [ + "table", + "rows", + "columns" + ], + "categories": [ + "text", + "layout", + "design" + ], + "aliases": [ + "grid", + "grid-3-x-3" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/grip-horizontal.json b/openv0_server/library/lucide/grip-horizontal.json new file mode 100644 index 0000000..8e4a0cb --- /dev/null +++ b/openv0_server/library/lucide/grip-horizontal.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "grab", + "dots", + "handle", + "move", + "drag" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/grip-vertical.json b/openv0_server/library/lucide/grip-vertical.json new file mode 100644 index 0000000..0f66f75 --- /dev/null +++ b/openv0_server/library/lucide/grip-vertical.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "johnletey" + ], + "tags": [ + "grab", + "dots", + "handle", + "move", + "drag" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/grip.json b/openv0_server/library/lucide/grip.json new file mode 100644 index 0000000..b444080 --- /dev/null +++ b/openv0_server/library/lucide/grip.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "koole", + "ericfennis" + ], + "tags": [ + "grab", + "dots", + "handle", + "move", + "drag" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/group.json b/openv0_server/library/lucide/group.json new file mode 100644 index 0000000..e7fae01 --- /dev/null +++ b/openv0_server/library/lucide/group.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "cubes", + "packages", + "parts", + "units", + "collection", + "cluster", + "gather", + "dashed" + ], + "categories": [ + "shapes", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/hammer.json b/openv0_server/library/lucide/hammer.json new file mode 100644 index 0000000..d3b6844 --- /dev/null +++ b/openv0_server/library/lucide/hammer.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "ericfennis" + ], + "tags": [ + "mallet" + ], + "categories": [ + "tools" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/hand-metal.json b/openv0_server/library/lucide/hand-metal.json new file mode 100644 index 0000000..37194fa --- /dev/null +++ b/openv0_server/library/lucide/hand-metal.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "rock" + ], + "categories": [ + "emoji", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/hand.json b/openv0_server/library/lucide/hand.json new file mode 100644 index 0000000..80a8f41 --- /dev/null +++ b/openv0_server/library/lucide/hand.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "wave", + "move", + "mouse", + "grab" + ], + "categories": [ + "cursors", + "accessibility" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/hard-drive-download.json b/openv0_server/library/lucide/hard-drive-download.json new file mode 100644 index 0000000..9b566fd --- /dev/null +++ b/openv0_server/library/lucide/hard-drive-download.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "computer", + "server", + "memory", + "data", + "ssd", + "disk", + "hard disk", + "save" + ], + "categories": [ + "development", + "devices", + "arrows", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/hard-drive-upload.json b/openv0_server/library/lucide/hard-drive-upload.json new file mode 100644 index 0000000..9b566fd --- /dev/null +++ b/openv0_server/library/lucide/hard-drive-upload.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "computer", + "server", + "memory", + "data", + "ssd", + "disk", + "hard disk", + "save" + ], + "categories": [ + "development", + "devices", + "arrows", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/hard-drive.json b/openv0_server/library/lucide/hard-drive.json new file mode 100644 index 0000000..c9f70f4 --- /dev/null +++ b/openv0_server/library/lucide/hard-drive.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "computer", + "server", + "memory", + "data", + "ssd", + "disk", + "hard disk" + ], + "categories": [ + "development", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/hard-hat.json b/openv0_server/library/lucide/hard-hat.json new file mode 100644 index 0000000..02c062a --- /dev/null +++ b/openv0_server/library/lucide/hard-hat.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "ericfennis" + ], + "tags": [ + "helmet", + "construction", + "safety", + "savety" + ], + "categories": [ + "tools" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/hash.json b/openv0_server/library/lucide/hash.json new file mode 100644 index 0000000..0c76a6b --- /dev/null +++ b/openv0_server/library/lucide/hash.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "hashtag", + "number", + "pound" + ], + "categories": [ + "text", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/haze.json b/openv0_server/library/lucide/haze.json new file mode 100644 index 0000000..33727f9 --- /dev/null +++ b/openv0_server/library/lucide/haze.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "mist", + "fog" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/hdmi-port.json b/openv0_server/library/lucide/hdmi-port.json new file mode 100644 index 0000000..28658cb --- /dev/null +++ b/openv0_server/library/lucide/hdmi-port.json @@ -0,0 +1,28 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "socket", + "plug", + "slot", + "controller", + "connector", + "interface", + "console", + "signal", + "audio", + "video", + "visual", + "av", + "data", + "input", + "output" + ], + "categories": [ + "devices", + "multimedia", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/heading-1.json b/openv0_server/library/lucide/heading-1.json new file mode 100644 index 0000000..bb99294 --- /dev/null +++ b/openv0_server/library/lucide/heading-1.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "h1", + "html", + "markup", + "markdown" + ], + "categories": [ + "text", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/heading-2.json b/openv0_server/library/lucide/heading-2.json new file mode 100644 index 0000000..45c55b3 --- /dev/null +++ b/openv0_server/library/lucide/heading-2.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "h2", + "html", + "markup", + "markdown" + ], + "categories": [ + "text", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/heading-3.json b/openv0_server/library/lucide/heading-3.json new file mode 100644 index 0000000..7ce98fb --- /dev/null +++ b/openv0_server/library/lucide/heading-3.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "h3", + "html", + "markup", + "markdown" + ], + "categories": [ + "text", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/heading-4.json b/openv0_server/library/lucide/heading-4.json new file mode 100644 index 0000000..a173eae --- /dev/null +++ b/openv0_server/library/lucide/heading-4.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "h4", + "html", + "markup", + "markdown" + ], + "categories": [ + "text", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/heading-5.json b/openv0_server/library/lucide/heading-5.json new file mode 100644 index 0000000..1e92498 --- /dev/null +++ b/openv0_server/library/lucide/heading-5.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "h5", + "html", + "markup", + "markdown" + ], + "categories": [ + "text", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/heading-6.json b/openv0_server/library/lucide/heading-6.json new file mode 100644 index 0000000..4364230 --- /dev/null +++ b/openv0_server/library/lucide/heading-6.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "h6", + "html", + "markup", + "markdown" + ], + "categories": [ + "text", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/heading.json b/openv0_server/library/lucide/heading.json new file mode 100644 index 0000000..bb99294 --- /dev/null +++ b/openv0_server/library/lucide/heading.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "h1", + "html", + "markup", + "markdown" + ], + "categories": [ + "text", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/headphones.json b/openv0_server/library/lucide/headphones.json new file mode 100644 index 0000000..60b0ff5 --- /dev/null +++ b/openv0_server/library/lucide/headphones.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "jguddas" + ], + "tags": [ + "music", + "audio", + "sound" + ], + "categories": [ + "multimedia", + "connectivity", + "devices", + "files", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/heart-crack.json b/openv0_server/library/lucide/heart-crack.json new file mode 100644 index 0000000..d578bbd --- /dev/null +++ b/openv0_server/library/lucide/heart-crack.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "danielbayley" + ], + "tags": [ + "heartbreak", + "sadness", + "emotion" + ], + "categories": [ + "emoji" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/heart-handshake.json b/openv0_server/library/lucide/heart-handshake.json new file mode 100644 index 0000000..f86e218 --- /dev/null +++ b/openv0_server/library/lucide/heart-handshake.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "danielbayley" + ], + "tags": [ + "agreement", + "charity", + "help", + "deal", + "terms", + "emotion", + "together", + "handshake" + ], + "categories": [ + "emoji", + "account", + "security" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/heart-off.json b/openv0_server/library/lucide/heart-off.json new file mode 100644 index 0000000..74d3a1f --- /dev/null +++ b/openv0_server/library/lucide/heart-off.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis", + "danielbayley" + ], + "tags": [ + "unlike", + "dislike", + "hate", + "emotion" + ], + "categories": [ + "social", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/heart-pulse.json b/openv0_server/library/lucide/heart-pulse.json new file mode 100644 index 0000000..5be7a2e --- /dev/null +++ b/openv0_server/library/lucide/heart-pulse.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "danielbayley" + ], + "tags": [ + "heartbeat", + "pulse", + "health", + "medical", + "blood pressure", + "cardiac", + "systole", + "diastole" + ], + "categories": [ + "medical" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/heart.json b/openv0_server/library/lucide/heart.json new file mode 100644 index 0000000..086f105 --- /dev/null +++ b/openv0_server/library/lucide/heart.json @@ -0,0 +1,25 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis", + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "like", + "love", + "emotion", + "suit", + "playing", + "cards" + ], + "categories": [ + "medical", + "social", + "multimedia", + "emoji", + "gaming", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/help-circle.json b/openv0_server/library/lucide/help-circle.json new file mode 100644 index 0000000..4210195 --- /dev/null +++ b/openv0_server/library/lucide/help-circle.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danbovey", + "colebemis", + "csandman", + "ericfennis", + "danielbayley" + ], + "tags": [ + "question mark" + ], + "categories": [ + "accessibility", + "text", + "shapes", + "notifications" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/helping-hand.json b/openv0_server/library/lucide/helping-hand.json new file mode 100644 index 0000000..46a3997 --- /dev/null +++ b/openv0_server/library/lucide/helping-hand.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "agreement", + "help", + "proposal", + "charity", + "begging", + "terms" + ], + "categories": [ + "emoji" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/hexagon.json b/openv0_server/library/lucide/hexagon.json new file mode 100644 index 0000000..77d2659 --- /dev/null +++ b/openv0_server/library/lucide/hexagon.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "shape", + "node.js", + "logo" + ], + "categories": [ + "shapes", + "brands", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/highlighter.json b/openv0_server/library/lucide/highlighter.json new file mode 100644 index 0000000..b811584 --- /dev/null +++ b/openv0_server/library/lucide/highlighter.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "lscheibel", + "Andreto", + "ericfennis" + ], + "tags": [ + "mark", + "text" + ], + "categories": [ + "text", + "design" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/history.json b/openv0_server/library/lucide/history.json new file mode 100644 index 0000000..5cb1e39 --- /dev/null +++ b/openv0_server/library/lucide/history.json @@ -0,0 +1,25 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "danielbayley", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "time", + "redo", + "undo", + "rewind", + "timeline", + "version", + "time machine", + "backup", + "rotate", + "ccw" + ], + "categories": [ + "arrows", + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/home.json b/openv0_server/library/lucide/home.json new file mode 100644 index 0000000..ac6e589 --- /dev/null +++ b/openv0_server/library/lucide/home.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "house", + "living" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/hop-off.json b/openv0_server/library/lucide/hop-off.json new file mode 100644 index 0000000..37877e1 --- /dev/null +++ b/openv0_server/library/lucide/hop-off.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "beer", + "brewery", + "drink", + "hop free", + "allergy", + "intolerance", + "diet" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/hop.json b/openv0_server/library/lucide/hop.json new file mode 100644 index 0000000..ba3d2ec --- /dev/null +++ b/openv0_server/library/lucide/hop.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "beer", + "brewery", + "drink" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/hotel.json b/openv0_server/library/lucide/hotel.json new file mode 100644 index 0000000..f24c0be --- /dev/null +++ b/openv0_server/library/lucide/hotel.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "building", + "hostel", + "motel", + "inn" + ], + "categories": [ + "buildings", + "maps", + "travel" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/hourglass.json b/openv0_server/library/lucide/hourglass.json new file mode 100644 index 0000000..edd3041 --- /dev/null +++ b/openv0_server/library/lucide/hourglass.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "timer", + "time", + "sandglass" + ], + "categories": [ + "time", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/ice-cream-2.json b/openv0_server/library/lucide/ice-cream-2.json new file mode 100644 index 0000000..d1285ba --- /dev/null +++ b/openv0_server/library/lucide/ice-cream-2.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "kemie", + "jguddas", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "gelato", + "food", + "dessert", + "dish", + "restaurant", + "course", + "meal" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/ice-cream.json b/openv0_server/library/lucide/ice-cream.json new file mode 100644 index 0000000..9b9457a --- /dev/null +++ b/openv0_server/library/lucide/ice-cream.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "gelato", + "food" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/image-minus.json b/openv0_server/library/lucide/image-minus.json new file mode 100644 index 0000000..9054e2c --- /dev/null +++ b/openv0_server/library/lucide/image-minus.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "remove", + "delete" + ], + "categories": [ + "photography", + "multimedia", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/image-off.json b/openv0_server/library/lucide/image-off.json new file mode 100644 index 0000000..99ce024 --- /dev/null +++ b/openv0_server/library/lucide/image-off.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "picture", + "photo" + ], + "categories": [ + "photography", + "multimedia", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/image-plus.json b/openv0_server/library/lucide/image-plus.json new file mode 100644 index 0000000..d5d3fe2 --- /dev/null +++ b/openv0_server/library/lucide/image-plus.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "add", + "create" + ], + "categories": [ + "photography", + "multimedia", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/image.json b/openv0_server/library/lucide/image.json new file mode 100644 index 0000000..903d7d4 --- /dev/null +++ b/openv0_server/library/lucide/image.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "picture", + "photo" + ], + "categories": [ + "photography", + "text", + "multimedia", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/import.json b/openv0_server/library/lucide/import.json new file mode 100644 index 0000000..ad5b6d4 --- /dev/null +++ b/openv0_server/library/lucide/import.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "save" + ], + "categories": [ + "arrows", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/inbox.json b/openv0_server/library/lucide/inbox.json new file mode 100644 index 0000000..794ac61 --- /dev/null +++ b/openv0_server/library/lucide/inbox.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "email" + ], + "categories": [ + "account", + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/indent.json b/openv0_server/library/lucide/indent.json new file mode 100644 index 0000000..af348ff --- /dev/null +++ b/openv0_server/library/lucide/indent.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Themistoklis", + "ericfennis" + ], + "tags": [ + "text", + "tab" + ], + "categories": [ + "text", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/indian-rupee.json b/openv0_server/library/lucide/indian-rupee.json new file mode 100644 index 0000000..c70558d --- /dev/null +++ b/openv0_server/library/lucide/indian-rupee.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "mittalyashu" + ], + "tags": [ + "currency", + "money", + "payment" + ], + "categories": [ + "currency", + "money" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/infinity.json b/openv0_server/library/lucide/infinity.json new file mode 100644 index 0000000..cd9c4d0 --- /dev/null +++ b/openv0_server/library/lucide/infinity.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "unlimited", + "forever", + "loop", + "maths" + ], + "categories": [ + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/info.json b/openv0_server/library/lucide/info.json new file mode 100644 index 0000000..f877c23 --- /dev/null +++ b/openv0_server/library/lucide/info.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis", + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "help" + ], + "categories": [ + "accessibility", + "notifications" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/instagram.json b/openv0_server/library/lucide/instagram.json new file mode 100644 index 0000000..8e8c936 --- /dev/null +++ b/openv0_server/library/lucide/instagram.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "logo", + "camera", + "social" + ], + "categories": [ + "brands", + "social", + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/italic.json b/openv0_server/library/lucide/italic.json new file mode 100644 index 0000000..284b48d --- /dev/null +++ b/openv0_server/library/lucide/italic.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "oblique", + "text", + "format" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/iteration-ccw.json b/openv0_server/library/lucide/iteration-ccw.json new file mode 100644 index 0000000..3dbfc6d --- /dev/null +++ b/openv0_server/library/lucide/iteration-ccw.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "arrow", + "right" + ], + "categories": [ + "arrows", + "design" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/iteration-cw.json b/openv0_server/library/lucide/iteration-cw.json new file mode 100644 index 0000000..fc804f1 --- /dev/null +++ b/openv0_server/library/lucide/iteration-cw.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "arrow", + "left" + ], + "categories": [ + "arrows", + "design" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/japanese-yen.json b/openv0_server/library/lucide/japanese-yen.json new file mode 100644 index 0000000..37e5265 --- /dev/null +++ b/openv0_server/library/lucide/japanese-yen.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "currency", + "money", + "payment" + ], + "categories": [ + "currency", + "money" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/joystick.json b/openv0_server/library/lucide/joystick.json new file mode 100644 index 0000000..b27abff --- /dev/null +++ b/openv0_server/library/lucide/joystick.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "game", + "console", + "control stick" + ], + "categories": [ + "gaming", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/kanban-square-dashed.json b/openv0_server/library/lucide/kanban-square-dashed.json new file mode 100644 index 0000000..5e30b86 --- /dev/null +++ b/openv0_server/library/lucide/kanban-square-dashed.json @@ -0,0 +1,33 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "projects", + "manage", + "overview", + "board", + "tickets", + "issues", + "roadmap", + "plan", + "intentions", + "productivity", + "work", + "agile", + "draft", + "template", + "boilerplate", + "code", + "coding" + ], + "categories": [ + "charts", + "development", + "design" + ], + "aliases": [ + "square-kanban-dashed" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/kanban-square.json b/openv0_server/library/lucide/kanban-square.json new file mode 100644 index 0000000..dd76146 --- /dev/null +++ b/openv0_server/library/lucide/kanban-square.json @@ -0,0 +1,32 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "projects", + "manage", + "overview", + "board", + "tickets", + "issues", + "roadmap", + "plan", + "intentions", + "productivity", + "work", + "agile", + "code", + "coding", + "toolbar", + "button" + ], + "categories": [ + "charts", + "development", + "design" + ], + "aliases": [ + "square-kanban" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/kanban.json b/openv0_server/library/lucide/kanban.json new file mode 100644 index 0000000..0619277 --- /dev/null +++ b/openv0_server/library/lucide/kanban.json @@ -0,0 +1,27 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "projects", + "manage", + "overview", + "board", + "tickets", + "issues", + "roadmap", + "plan", + "intentions", + "productivity", + "work", + "agile", + "code", + "coding" + ], + "categories": [ + "charts", + "development", + "design" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/key-round.json b/openv0_server/library/lucide/key-round.json new file mode 100644 index 0000000..7790392 --- /dev/null +++ b/openv0_server/library/lucide/key-round.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "password", + "login", + "authentication", + "secure", + "unlock" + ], + "categories": [ + "security", + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/key-square.json b/openv0_server/library/lucide/key-square.json new file mode 100644 index 0000000..977b5bc --- /dev/null +++ b/openv0_server/library/lucide/key-square.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "password", + "login", + "authentication", + "secure", + "unlock", + "car key" + ], + "categories": [ + "security", + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/key.json b/openv0_server/library/lucide/key.json new file mode 100644 index 0000000..39d7ed0 --- /dev/null +++ b/openv0_server/library/lucide/key.json @@ -0,0 +1,24 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ashygee", + "csandman", + "mittalyashu", + "ericfennis", + "jguddas" + ], + "tags": [ + "password", + "login", + "authentication", + "secure", + "unlock", + "keychain", + "key ring", + "fob" + ], + "categories": [ + "security", + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/keyboard.json b/openv0_server/library/lucide/keyboard.json new file mode 100644 index 0000000..8f9f885 --- /dev/null +++ b/openv0_server/library/lucide/keyboard.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "it-is-not", + "ericfennis" + ], + "tags": [ + "layout", + "spell", + "settings", + "mouse" + ], + "categories": [ + "text", + "devices", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/lamp-ceiling.json b/openv0_server/library/lucide/lamp-ceiling.json new file mode 100644 index 0000000..1c13b96 --- /dev/null +++ b/openv0_server/library/lucide/lamp-ceiling.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "danielbayley" + ], + "tags": [ + "lighting", + "household", + "home", + "furniture" + ], + "categories": [ + "furniture" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/lamp-desk.json b/openv0_server/library/lucide/lamp-desk.json new file mode 100644 index 0000000..b09c41f --- /dev/null +++ b/openv0_server/library/lucide/lamp-desk.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "lighting", + "household", + "office", + "desk", + "home", + "furniture" + ], + "categories": [ + "furniture" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/lamp-floor.json b/openv0_server/library/lucide/lamp-floor.json new file mode 100644 index 0000000..ddca521 --- /dev/null +++ b/openv0_server/library/lucide/lamp-floor.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "danielbayley" + ], + "tags": [ + "lighting", + "household", + "floor", + "home", + "furniture" + ], + "categories": [ + "furniture" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/lamp-wall-down.json b/openv0_server/library/lucide/lamp-wall-down.json new file mode 100644 index 0000000..4289ba4 --- /dev/null +++ b/openv0_server/library/lucide/lamp-wall-down.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "lighting", + "household", + "wall", + "home", + "furniture" + ], + "categories": [ + "furniture" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/lamp-wall-up.json b/openv0_server/library/lucide/lamp-wall-up.json new file mode 100644 index 0000000..4289ba4 --- /dev/null +++ b/openv0_server/library/lucide/lamp-wall-up.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "lighting", + "household", + "wall", + "home", + "furniture" + ], + "categories": [ + "furniture" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/lamp.json b/openv0_server/library/lucide/lamp.json new file mode 100644 index 0000000..ae2ff09 --- /dev/null +++ b/openv0_server/library/lucide/lamp.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "lighting", + "household", + "home", + "furniture" + ], + "categories": [ + "furniture" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/landmark.json b/openv0_server/library/lucide/landmark.json new file mode 100644 index 0000000..cd1b63b --- /dev/null +++ b/openv0_server/library/lucide/landmark.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "connium", + "ericfennis" + ], + "tags": [ + "bank", + "building", + "capitol", + "finance", + "money" + ], + "categories": [ + "money", + "maps", + "buildings" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/languages.json b/openv0_server/library/lucide/languages.json new file mode 100644 index 0000000..c21eafa --- /dev/null +++ b/openv0_server/library/lucide/languages.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "mittalyashu", + "johnletey" + ], + "tags": [ + "translate" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/laptop-2.json b/openv0_server/library/lucide/laptop-2.json new file mode 100644 index 0000000..381c83e --- /dev/null +++ b/openv0_server/library/lucide/laptop-2.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "computer", + "screen", + "remote" + ], + "categories": [ + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/laptop.json b/openv0_server/library/lucide/laptop.json new file mode 100644 index 0000000..28b52a6 --- /dev/null +++ b/openv0_server/library/lucide/laptop.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "csandman" + ], + "tags": [ + "computer", + "screen", + "remote" + ], + "categories": [ + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/lasso-select.json b/openv0_server/library/lucide/lasso-select.json new file mode 100644 index 0000000..9830178 --- /dev/null +++ b/openv0_server/library/lucide/lasso-select.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mishkaio", + "ericfennis", + "csandman" + ], + "tags": [ + "select", + "cursor" + ], + "categories": [ + "arrows", + "design", + "cursors" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/lasso.json b/openv0_server/library/lucide/lasso.json new file mode 100644 index 0000000..ee50538 --- /dev/null +++ b/openv0_server/library/lucide/lasso.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mishkaio", + "ericfennis", + "csandman" + ], + "tags": [ + "select", + "cursor" + ], + "categories": [ + "design", + "cursors" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/laugh.json b/openv0_server/library/lucide/laugh.json new file mode 100644 index 0000000..224d521 --- /dev/null +++ b/openv0_server/library/lucide/laugh.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "emoji", + "face", + "happy", + "good", + "emotion" + ], + "categories": [ + "emoji" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/layers.json b/openv0_server/library/lucide/layers.json new file mode 100644 index 0000000..78adf24 --- /dev/null +++ b/openv0_server/library/lucide/layers.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "stack", + "pages" + ], + "categories": [ + "design", + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/layout-dashboard.json b/openv0_server/library/lucide/layout-dashboard.json new file mode 100644 index 0000000..76ffd62 --- /dev/null +++ b/openv0_server/library/lucide/layout-dashboard.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "danielbayley" + ], + "tags": [ + "masonry", + "brick" + ], + "categories": [ + "design", + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/layout-grid.json b/openv0_server/library/lucide/layout-grid.json new file mode 100644 index 0000000..fcaa6ae --- /dev/null +++ b/openv0_server/library/lucide/layout-grid.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "zenoamaro", + "ericfennis", + "csandman", + "mittalyashu", + "danielbayley" + ], + "tags": [ + "app", + "home", + "start" + ], + "categories": [ + "design", + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/layout-list.json b/openv0_server/library/lucide/layout-list.json new file mode 100644 index 0000000..e2997cd --- /dev/null +++ b/openv0_server/library/lucide/layout-list.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "danielbayley" + ], + "tags": [ + "todo", + "tasks", + "items", + "pending", + "image", + "photo" + ], + "categories": [ + "design", + "layout", + "photography", + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/layout-panel-left.json b/openv0_server/library/lucide/layout-panel-left.json new file mode 100644 index 0000000..fa0df68 --- /dev/null +++ b/openv0_server/library/lucide/layout-panel-left.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "app", + "home", + "start", + "grid" + ], + "categories": [ + "design", + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/layout-panel-top.json b/openv0_server/library/lucide/layout-panel-top.json new file mode 100644 index 0000000..d8f7db7 --- /dev/null +++ b/openv0_server/library/lucide/layout-panel-top.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "window", + "webpage", + "block", + "section", + "grid", + "template", + "structure" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/layout-template.json b/openv0_server/library/lucide/layout-template.json new file mode 100644 index 0000000..d182eef --- /dev/null +++ b/openv0_server/library/lucide/layout-template.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "danielbayley" + ], + "tags": [ + "window", + "webpage", + "block", + "section" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/layout.json b/openv0_server/library/lucide/layout.json new file mode 100644 index 0000000..1bef42e --- /dev/null +++ b/openv0_server/library/lucide/layout.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "window", + "webpage" + ], + "categories": [ + "design", + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/leaf.json b/openv0_server/library/lucide/leaf.json new file mode 100644 index 0000000..e2cb404 --- /dev/null +++ b/openv0_server/library/lucide/leaf.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "sustainability", + "nature", + "energy", + "plant", + "autumn" + ], + "categories": [ + "nature", + "sustainability", + "seasons" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/leafy-green.json b/openv0_server/library/lucide/leafy-green.json new file mode 100644 index 0000000..2264758 --- /dev/null +++ b/openv0_server/library/lucide/leafy-green.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "salad", + "lettuce", + "vegetable", + "chard", + "cabbage", + "bok choy" + ], + "categories": [ + "food-beverage", + "emoji" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/library.json b/openv0_server/library/lucide/library.json new file mode 100644 index 0000000..3f04faa --- /dev/null +++ b/openv0_server/library/lucide/library.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "johnletey", + "csandman", + "ericfennis" + ], + "tags": [ + "book", + "music", + "album" + ], + "categories": [ + "photography", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/life-buoy.json b/openv0_server/library/lucide/life-buoy.json new file mode 100644 index 0000000..659f929 --- /dev/null +++ b/openv0_server/library/lucide/life-buoy.json @@ -0,0 +1,26 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis", + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "preserver", + "life belt", + "lifesaver", + "help", + "rescue", + "ship", + "ring", + "raft", + "inflatable", + "wheel", + "donut" + ], + "categories": [ + "accessibility", + "medical" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/ligature.json b/openv0_server/library/lucide/ligature.json new file mode 100644 index 0000000..b9948c2 --- /dev/null +++ b/openv0_server/library/lucide/ligature.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "text", + "font", + "typography", + "alternates", + "alternatives" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/lightbulb-off.json b/openv0_server/library/lucide/lightbulb-off.json new file mode 100644 index 0000000..99be777 --- /dev/null +++ b/openv0_server/library/lucide/lightbulb-off.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "karsa-mistmere", + "danielbayley" + ], + "tags": [ + "lights" + ], + "categories": [ + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/lightbulb.json b/openv0_server/library/lucide/lightbulb.json new file mode 100644 index 0000000..2618043 --- /dev/null +++ b/openv0_server/library/lucide/lightbulb.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "danielbayley" + ], + "tags": [ + "idea", + "bright", + "lights" + ], + "categories": [ + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/line-chart.json b/openv0_server/library/lucide/line-chart.json new file mode 100644 index 0000000..68f9d8d --- /dev/null +++ b/openv0_server/library/lucide/line-chart.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "statistics", + "diagram", + "graph" + ], + "categories": [ + "charts" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/link-2-off.json b/openv0_server/library/lucide/link-2-off.json new file mode 100644 index 0000000..f20937f --- /dev/null +++ b/openv0_server/library/lucide/link-2-off.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "csandman", + "karsa-mistmere" + ], + "tags": [ + "unchain", + "chain" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/link-2.json b/openv0_server/library/lucide/link-2.json new file mode 100644 index 0000000..9fa54a8 --- /dev/null +++ b/openv0_server/library/lucide/link-2.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis", + "csandman", + "karsa-mistmere", + "johnletey" + ], + "tags": [ + "chain", + "url" + ], + "categories": [ + "text", + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/link.json b/openv0_server/library/lucide/link.json new file mode 100644 index 0000000..39b68a6 --- /dev/null +++ b/openv0_server/library/lucide/link.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "chain", + "url" + ], + "categories": [ + "text", + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/linkedin.json b/openv0_server/library/lucide/linkedin.json new file mode 100644 index 0000000..9891611 --- /dev/null +++ b/openv0_server/library/lucide/linkedin.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "okcoker", + "csandman", + "ericfennis" + ], + "tags": [ + "logo", + "social media", + "social" + ], + "categories": [ + "account", + "social", + "brands" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/list-checks.json b/openv0_server/library/lucide/list-checks.json new file mode 100644 index 0000000..67542cb --- /dev/null +++ b/openv0_server/library/lucide/list-checks.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "todo", + "done", + "check", + "tick", + "complete", + "tasks", + "items", + "pending" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/list-end.json b/openv0_server/library/lucide/list-end.json new file mode 100644 index 0000000..712867b --- /dev/null +++ b/openv0_server/library/lucide/list-end.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "queue", + "bottom", + "end", + "playlist" + ], + "categories": [ + "multimedia", + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/list-filter.json b/openv0_server/library/lucide/list-filter.json new file mode 100644 index 0000000..6405427 --- /dev/null +++ b/openv0_server/library/lucide/list-filter.json @@ -0,0 +1,12 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "options" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/list-minus.json b/openv0_server/library/lucide/list-minus.json new file mode 100644 index 0000000..292ca6a --- /dev/null +++ b/openv0_server/library/lucide/list-minus.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "playlist", + "remove", + "song", + "subtract", + "delete", + "unqueue" + ], + "categories": [ + "multimedia", + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/list-music.json b/openv0_server/library/lucide/list-music.json new file mode 100644 index 0000000..3a2b9b1 --- /dev/null +++ b/openv0_server/library/lucide/list-music.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "playlist", + "queue", + "music", + "audio", + "playback" + ], + "categories": [ + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/list-ordered.json b/openv0_server/library/lucide/list-ordered.json new file mode 100644 index 0000000..afa1b08 --- /dev/null +++ b/openv0_server/library/lucide/list-ordered.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "csandman" + ], + "tags": [ + "number", + "order", + "queue" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/list-plus.json b/openv0_server/library/lucide/list-plus.json new file mode 100644 index 0000000..fc28c6b --- /dev/null +++ b/openv0_server/library/lucide/list-plus.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "playlist", + "add", + "song", + "track", + "new" + ], + "categories": [ + "multimedia", + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/list-restart.json b/openv0_server/library/lucide/list-restart.json new file mode 100644 index 0000000..f9adb85 --- /dev/null +++ b/openv0_server/library/lucide/list-restart.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "reset", + "refresh", + "reload", + "playlist", + "replay" + ], + "categories": [ + "multimedia", + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/list-start.json b/openv0_server/library/lucide/list-start.json new file mode 100644 index 0000000..4183add --- /dev/null +++ b/openv0_server/library/lucide/list-start.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "queue", + "top", + "start", + "next", + "playlist" + ], + "categories": [ + "multimedia", + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/list-todo.json b/openv0_server/library/lucide/list-todo.json new file mode 100644 index 0000000..9ccb148 --- /dev/null +++ b/openv0_server/library/lucide/list-todo.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "todo", + "done", + "check", + "tick", + "complete", + "tasks", + "items", + "pending" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/list-tree.json b/openv0_server/library/lucide/list-tree.json new file mode 100644 index 0000000..a8343a8 --- /dev/null +++ b/openv0_server/library/lucide/list-tree.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "tree", + "browser" + ], + "categories": [ + "files", + "text", + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/list-video.json b/openv0_server/library/lucide/list-video.json new file mode 100644 index 0000000..a873ba8 --- /dev/null +++ b/openv0_server/library/lucide/list-video.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "playlist", + "video", + "playback" + ], + "categories": [ + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/list-x.json b/openv0_server/library/lucide/list-x.json new file mode 100644 index 0000000..0dbf084 --- /dev/null +++ b/openv0_server/library/lucide/list-x.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "playlist", + "subtract", + "remove", + "delete", + "unqueue" + ], + "categories": [ + "multimedia", + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/list.json b/openv0_server/library/lucide/list.json new file mode 100644 index 0000000..17f729b --- /dev/null +++ b/openv0_server/library/lucide/list.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "options" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/loader-2.json b/openv0_server/library/lucide/loader-2.json new file mode 100644 index 0000000..3e3a026 --- /dev/null +++ b/openv0_server/library/lucide/loader-2.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "danielbayley", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "load" + ], + "categories": [ + "multimedia", + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/loader.json b/openv0_server/library/lucide/loader.json new file mode 100644 index 0000000..cab0407 --- /dev/null +++ b/openv0_server/library/lucide/loader.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "load", + "wait" + ], + "categories": [ + "multimedia", + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/locate-fixed.json b/openv0_server/library/lucide/locate-fixed.json new file mode 100644 index 0000000..fbb1301 --- /dev/null +++ b/openv0_server/library/lucide/locate-fixed.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "csandman", + "danielbayley", + "jguddas", + "ericfennis" + ], + "tags": [ + "map", + "gps", + "location", + "cross" + ], + "categories": [ + "navigation", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/locate-off.json b/openv0_server/library/lucide/locate-off.json new file mode 100644 index 0000000..151a9b7 --- /dev/null +++ b/openv0_server/library/lucide/locate-off.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "fdev" + ], + "tags": [ + "map", + "gps", + "location", + "cross" + ], + "categories": [ + "navigation", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/locate.json b/openv0_server/library/lucide/locate.json new file mode 100644 index 0000000..c827999 --- /dev/null +++ b/openv0_server/library/lucide/locate.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "map", + "gps", + "location", + "cross" + ], + "categories": [ + "navigation", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/lock.json b/openv0_server/library/lucide/lock.json new file mode 100644 index 0000000..2d918ee --- /dev/null +++ b/openv0_server/library/lucide/lock.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "security", + "password", + "secure", + "admin" + ], + "categories": [ + "security" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/log-in.json b/openv0_server/library/lucide/log-in.json new file mode 100644 index 0000000..5864a08 --- /dev/null +++ b/openv0_server/library/lucide/log-in.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "sign in", + "arrow", + "enter", + "auth" + ], + "categories": [ + "arrows", + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/log-out.json b/openv0_server/library/lucide/log-out.json new file mode 100644 index 0000000..0dd4c51 --- /dev/null +++ b/openv0_server/library/lucide/log-out.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "sign out", + "arrow", + "exit", + "auth" + ], + "categories": [ + "arrows", + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/lollipop.json b/openv0_server/library/lucide/lollipop.json new file mode 100644 index 0000000..a742d8e --- /dev/null +++ b/openv0_server/library/lucide/lollipop.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "lolly", + "candy", + "sugar", + "food", + "sweet", + "dessert", + "spiral" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/luggage.json b/openv0_server/library/lucide/luggage.json new file mode 100644 index 0000000..894cb19 --- /dev/null +++ b/openv0_server/library/lucide/luggage.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "baggage", + "luggage", + "travel", + "suitcase" + ], + "categories": [ + "travel", + "transportation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/m-square.json b/openv0_server/library/lucide/m-square.json new file mode 100644 index 0000000..afe9add --- /dev/null +++ b/openv0_server/library/lucide/m-square.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "metro", + "subway", + "underground", + "track", + "line" + ], + "categories": [ + "transportation", + "maps", + "navigation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/magnet.json b/openv0_server/library/lucide/magnet.json new file mode 100644 index 0000000..bfac568 --- /dev/null +++ b/openv0_server/library/lucide/magnet.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "horseshoe", + "lock", + "science", + "snap" + ], + "categories": [ + "design" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/mail-check.json b/openv0_server/library/lucide/mail-check.json new file mode 100644 index 0000000..9aabdb9 --- /dev/null +++ b/openv0_server/library/lucide/mail-check.json @@ -0,0 +1,24 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "email", + "message", + "letter", + "subscribe", + "delivered", + "success", + "read", + "done", + "todo", + "tick", + "complete", + "task" + ], + "categories": [ + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/mail-minus.json b/openv0_server/library/lucide/mail-minus.json new file mode 100644 index 0000000..ac6228c --- /dev/null +++ b/openv0_server/library/lucide/mail-minus.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "email", + "message", + "letter", + "remove", + "delete" + ], + "categories": [ + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/mail-open.json b/openv0_server/library/lucide/mail-open.json new file mode 100644 index 0000000..d28de68 --- /dev/null +++ b/openv0_server/library/lucide/mail-open.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "email", + "message", + "letter", + "read" + ], + "categories": [ + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/mail-plus.json b/openv0_server/library/lucide/mail-plus.json new file mode 100644 index 0000000..89859df --- /dev/null +++ b/openv0_server/library/lucide/mail-plus.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "email", + "message", + "letter", + "add", + "create", + "new", + "compose" + ], + "categories": [ + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/mail-question.json b/openv0_server/library/lucide/mail-question.json new file mode 100644 index 0000000..6f6ebbd --- /dev/null +++ b/openv0_server/library/lucide/mail-question.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "email", + "message", + "letter", + "delivery", + "undelivered" + ], + "categories": [ + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/mail-search.json b/openv0_server/library/lucide/mail-search.json new file mode 100644 index 0000000..31c0d4d --- /dev/null +++ b/openv0_server/library/lucide/mail-search.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "email", + "message", + "letter", + "search" + ], + "categories": [ + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/mail-warning.json b/openv0_server/library/lucide/mail-warning.json new file mode 100644 index 0000000..67b06c2 --- /dev/null +++ b/openv0_server/library/lucide/mail-warning.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "email", + "message", + "letter", + "delivery error", + "exclamation mark" + ], + "categories": [ + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/mail-x.json b/openv0_server/library/lucide/mail-x.json new file mode 100644 index 0000000..d35db68 --- /dev/null +++ b/openv0_server/library/lucide/mail-x.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "email", + "message", + "letter", + "remove", + "delete" + ], + "categories": [ + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/mail.json b/openv0_server/library/lucide/mail.json new file mode 100644 index 0000000..86b9cd2 --- /dev/null +++ b/openv0_server/library/lucide/mail.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "email", + "message", + "letter", + "unread" + ], + "categories": [ + "text", + "account", + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/mailbox.json b/openv0_server/library/lucide/mailbox.json new file mode 100644 index 0000000..1868f90 --- /dev/null +++ b/openv0_server/library/lucide/mailbox.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "emails", + "messages", + "letters", + "mailing list", + "newsletter" + ], + "categories": [ + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/mails.json b/openv0_server/library/lucide/mails.json new file mode 100644 index 0000000..16cd5b1 --- /dev/null +++ b/openv0_server/library/lucide/mails.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "emails", + "messages", + "letters", + "multiple", + "mailing list", + "newsletter", + "copy" + ], + "categories": [ + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/map-pin-off.json b/openv0_server/library/lucide/map-pin-off.json new file mode 100644 index 0000000..d6d42f9 --- /dev/null +++ b/openv0_server/library/lucide/map-pin-off.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "location", + "waypoint", + "marker", + "remove" + ], + "categories": [ + "maps", + "navigation", + "travel" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/map-pin.json b/openv0_server/library/lucide/map-pin.json new file mode 100644 index 0000000..57aebd8 --- /dev/null +++ b/openv0_server/library/lucide/map-pin.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "location", + "waypoint", + "marker", + "drop" + ], + "categories": [ + "maps", + "navigation", + "travel", + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/map.json b/openv0_server/library/lucide/map.json new file mode 100644 index 0000000..e7df5b5 --- /dev/null +++ b/openv0_server/library/lucide/map.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "location", + "navigation", + "travel" + ], + "categories": [ + "text", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/martini.json b/openv0_server/library/lucide/martini.json new file mode 100644 index 0000000..5558247 --- /dev/null +++ b/openv0_server/library/lucide/martini.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis", + "danielbayley" + ], + "tags": [ + "cocktail", + "alcohol", + "beverage", + "bar", + "drink", + "glass" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/maximize-2.json b/openv0_server/library/lucide/maximize-2.json new file mode 100644 index 0000000..cb390b4 --- /dev/null +++ b/openv0_server/library/lucide/maximize-2.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "fullscreen", + "arrows", + "expand" + ], + "categories": [ + "arrows", + "layout", + "design" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/maximize.json b/openv0_server/library/lucide/maximize.json new file mode 100644 index 0000000..879f366 --- /dev/null +++ b/openv0_server/library/lucide/maximize.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "fullscreen", + "expand", + "dashed" + ], + "categories": [ + "layout", + "design" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/medal.json b/openv0_server/library/lucide/medal.json new file mode 100644 index 0000000..0043e8b --- /dev/null +++ b/openv0_server/library/lucide/medal.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "prize", + "sports", + "winner", + "trophy", + "award", + "achievement" + ], + "categories": [ + "sports", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/megaphone-off.json b/openv0_server/library/lucide/megaphone-off.json new file mode 100644 index 0000000..dc550d6 --- /dev/null +++ b/openv0_server/library/lucide/megaphone-off.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "advertisement", + "attention", + "alert", + "notification", + "disable", + "silent" + ], + "categories": [ + "multimedia", + "notifications" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/megaphone.json b/openv0_server/library/lucide/megaphone.json new file mode 100644 index 0000000..5fabafa --- /dev/null +++ b/openv0_server/library/lucide/megaphone.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "advertisement", + "attention", + "alert", + "notification" + ], + "categories": [ + "multimedia", + "notifications" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/meh.json b/openv0_server/library/lucide/meh.json new file mode 100644 index 0000000..055999d --- /dev/null +++ b/openv0_server/library/lucide/meh.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "mittalyashu", + "ericfennis" + ], + "tags": [ + "emoji", + "face", + "neutral", + "emotion" + ], + "categories": [ + "emoji" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/memory-stick.json b/openv0_server/library/lucide/memory-stick.json new file mode 100644 index 0000000..65bf634 --- /dev/null +++ b/openv0_server/library/lucide/memory-stick.json @@ -0,0 +1,24 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "ram", + "random access", + "technology", + "computer", + "chip", + "circuit", + "specs", + "capacity", + "gigabytes", + "gb" + ], + "categories": [ + "devices", + "development", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/menu-square.json b/openv0_server/library/lucide/menu-square.json new file mode 100644 index 0000000..0ae44f4 --- /dev/null +++ b/openv0_server/library/lucide/menu-square.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "bars", + "navigation", + "hamburger", + "options", + "menu bar", + "panel" + ], + "categories": [ + "layout", + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/menu.json b/openv0_server/library/lucide/menu.json new file mode 100644 index 0000000..a8cf16f --- /dev/null +++ b/openv0_server/library/lucide/menu.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "bars", + "navigation", + "hamburger", + "options" + ], + "categories": [ + "layout", + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/merge.json b/openv0_server/library/lucide/merge.json new file mode 100644 index 0000000..b32ed65 --- /dev/null +++ b/openv0_server/library/lucide/merge.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "combine", + "join", + "unite" + ], + "categories": [ + "development", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/message-circle.json b/openv0_server/library/lucide/message-circle.json new file mode 100644 index 0000000..2442cb8 --- /dev/null +++ b/openv0_server/library/lucide/message-circle.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "comment", + "chat", + "conversation" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/message-square-dashed.json b/openv0_server/library/lucide/message-square-dashed.json new file mode 100644 index 0000000..e59233d --- /dev/null +++ b/openv0_server/library/lucide/message-square-dashed.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "comment", + "chat", + "conversation", + "draft" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/message-square-plus.json b/openv0_server/library/lucide/message-square-plus.json new file mode 100644 index 0000000..1ae5ba0 --- /dev/null +++ b/openv0_server/library/lucide/message-square-plus.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "comment", + "chat", + "conversation", + "add", + "feedback" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/message-square.json b/openv0_server/library/lucide/message-square.json new file mode 100644 index 0000000..964b881 --- /dev/null +++ b/openv0_server/library/lucide/message-square.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "comment", + "chat", + "conversation" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/messages-square.json b/openv0_server/library/lucide/messages-square.json new file mode 100644 index 0000000..bc42335 --- /dev/null +++ b/openv0_server/library/lucide/messages-square.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "comment", + "chat", + "conversation", + "copy", + "multiple" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/mic-2.json b/openv0_server/library/lucide/mic-2.json new file mode 100644 index 0000000..bf9798e --- /dev/null +++ b/openv0_server/library/lucide/mic-2.json @@ -0,0 +1,24 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "it-is-not", + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "lyrics", + "voice", + "listen", + "sound", + "music", + "radio", + "podcast", + "karaoke", + "singing", + "microphone" + ], + "categories": [ + "devices", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/mic-off.json b/openv0_server/library/lucide/mic-off.json new file mode 100644 index 0000000..da7b15b --- /dev/null +++ b/openv0_server/library/lucide/mic-off.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "record", + "sound", + "mute", + "microphone" + ], + "categories": [ + "devices", + "communication", + "connectivity", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/mic.json b/openv0_server/library/lucide/mic.json new file mode 100644 index 0000000..115be62 --- /dev/null +++ b/openv0_server/library/lucide/mic.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "record", + "sound", + "listen", + "radio", + "podcast", + "microphone" + ], + "categories": [ + "devices", + "communication", + "connectivity", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/microscope.json b/openv0_server/library/lucide/microscope.json new file mode 100644 index 0000000..84942a8 --- /dev/null +++ b/openv0_server/library/lucide/microscope.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "medical", + "education", + "science", + "imaging", + "research" + ], + "categories": [ + "science", + "medical" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/microwave.json b/openv0_server/library/lucide/microwave.json new file mode 100644 index 0000000..47831a3 --- /dev/null +++ b/openv0_server/library/lucide/microwave.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "oven", + "cooker", + "toaster oven", + "bake" + ], + "categories": [ + "food-beverage", + "home" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/milestone.json b/openv0_server/library/lucide/milestone.json new file mode 100644 index 0000000..f11b34e --- /dev/null +++ b/openv0_server/library/lucide/milestone.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "sign", + "signpost", + "direction", + "version control" + ], + "categories": [ + "arrows", + "navigation", + "development", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/milk-off.json b/openv0_server/library/lucide/milk-off.json new file mode 100644 index 0000000..9ba4fe0 --- /dev/null +++ b/openv0_server/library/lucide/milk-off.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "lactose free", + "bottle", + "beverage", + "drink", + "water", + "allergy", + "intolerance", + "diet" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/milk.json b/openv0_server/library/lucide/milk.json new file mode 100644 index 0000000..d2df5d5 --- /dev/null +++ b/openv0_server/library/lucide/milk.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "lactose", + "bottle", + "beverage", + "drink", + "water", + "diet" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/minimize-2.json b/openv0_server/library/lucide/minimize-2.json new file mode 100644 index 0000000..56c4d25 --- /dev/null +++ b/openv0_server/library/lucide/minimize-2.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "exit fullscreen", + "arrows", + "close", + "shrink" + ], + "categories": [ + "arrows", + "layout", + "design" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/minimize.json b/openv0_server/library/lucide/minimize.json new file mode 100644 index 0000000..3b62e5a --- /dev/null +++ b/openv0_server/library/lucide/minimize.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "exit fullscreen", + "close", + "shrink" + ], + "categories": [ + "layout", + "design" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/minus-circle.json b/openv0_server/library/lucide/minus-circle.json new file mode 100644 index 0000000..14e3bf5 --- /dev/null +++ b/openv0_server/library/lucide/minus-circle.json @@ -0,0 +1,25 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "subtract", + "remove", + "decrease", + "reduce", + "calculate", + "line", + "operator", + "code", + "coding", + "minimum", + "downgrade", + "-" + ], + "categories": [ + "maths", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/minus-square.json b/openv0_server/library/lucide/minus-square.json new file mode 100644 index 0000000..1d37507 --- /dev/null +++ b/openv0_server/library/lucide/minus-square.json @@ -0,0 +1,39 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "subtract", + "remove", + "decrease", + "reduce", + "calculator", + "button", + "keyboard", + "line", + "divider", + "separator", + "horizontal rule", + "hr", + "html", + "markup", + "markdown", + "---", + "toolbar", + "operator", + "code", + "coding", + "minimum", + "downgrade" + ], + "categories": [ + "maths", + "development", + "text", + "tools", + "devices", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/minus.json b/openv0_server/library/lucide/minus.json new file mode 100644 index 0000000..4362cfe --- /dev/null +++ b/openv0_server/library/lucide/minus.json @@ -0,0 +1,38 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "subtract", + "remove", + "decrease", + "decrement", + "reduce", + "negative", + "calculate", + "line", + "divider", + "separator", + "horizontal rule", + "hr", + "html", + "markup", + "markdown", + "---", + "toolbar", + "operator", + "code", + "coding", + "minimum", + "downgrade" + ], + "categories": [ + "maths", + "development", + "text", + "tools", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/monitor-check.json b/openv0_server/library/lucide/monitor-check.json new file mode 100644 index 0000000..796752f --- /dev/null +++ b/openv0_server/library/lucide/monitor-check.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "tv", + "screen", + "display", + "desktop", + "running", + "active", + "virtual machine", + "vm" + ], + "categories": [ + "connectivity", + "devices", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/monitor-dot.json b/openv0_server/library/lucide/monitor-dot.json new file mode 100644 index 0000000..796752f --- /dev/null +++ b/openv0_server/library/lucide/monitor-dot.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "tv", + "screen", + "display", + "desktop", + "running", + "active", + "virtual machine", + "vm" + ], + "categories": [ + "connectivity", + "devices", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/monitor-down.json b/openv0_server/library/lucide/monitor-down.json new file mode 100644 index 0000000..f2b9148 --- /dev/null +++ b/openv0_server/library/lucide/monitor-down.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "tv", + "screen", + "display", + "desktop", + "download" + ], + "categories": [ + "connectivity", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/monitor-off.json b/openv0_server/library/lucide/monitor-off.json new file mode 100644 index 0000000..17c4d2e --- /dev/null +++ b/openv0_server/library/lucide/monitor-off.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "yukosgiti", + "ericfennis", + "csandman" + ], + "tags": [ + "share" + ], + "categories": [ + "connectivity", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/monitor-pause.json b/openv0_server/library/lucide/monitor-pause.json new file mode 100644 index 0000000..bfb8b12 --- /dev/null +++ b/openv0_server/library/lucide/monitor-pause.json @@ -0,0 +1,28 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "tv", + "screen", + "display", + "desktop", + "video", + "movie", + "film", + "suspend", + "hibernate", + "boot", + "virtual machine", + "vm" + ], + "categories": [ + "connectivity", + "devices", + "multimedia", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/monitor-play.json b/openv0_server/library/lucide/monitor-play.json new file mode 100644 index 0000000..33413aa --- /dev/null +++ b/openv0_server/library/lucide/monitor-play.json @@ -0,0 +1,28 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "tv", + "screen", + "display", + "desktop", + "video", + "movie", + "film", + "running", + "start", + "boot", + "virtual machine", + "vm" + ], + "categories": [ + "connectivity", + "devices", + "multimedia", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/monitor-smartphone.json b/openv0_server/library/lucide/monitor-smartphone.json new file mode 100644 index 0000000..14b4570 --- /dev/null +++ b/openv0_server/library/lucide/monitor-smartphone.json @@ -0,0 +1,24 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "badraxas", + "karsa-mistmere", + "jguddas", + "ericfennis" + ], + "tags": [ + "smartphone", + "phone", + "cellphone", + "device", + "mobile", + "desktop", + "monitor", + "responsive", + "screens" + ], + "categories": [ + "connectivity", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/monitor-speaker.json b/openv0_server/library/lucide/monitor-speaker.json new file mode 100644 index 0000000..5f5535f --- /dev/null +++ b/openv0_server/library/lucide/monitor-speaker.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "devices", + "connect", + "cast" + ], + "categories": [ + "connectivity", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/monitor-stop.json b/openv0_server/library/lucide/monitor-stop.json new file mode 100644 index 0000000..b7b23ad --- /dev/null +++ b/openv0_server/library/lucide/monitor-stop.json @@ -0,0 +1,27 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "tv", + "screen", + "display", + "desktop", + "video", + "movie", + "film", + "stop", + "shutdown", + "virtual machine", + "vm" + ], + "categories": [ + "connectivity", + "devices", + "multimedia", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/monitor-up.json b/openv0_server/library/lucide/monitor-up.json new file mode 100644 index 0000000..058cc30 --- /dev/null +++ b/openv0_server/library/lucide/monitor-up.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "tv", + "screen", + "display", + "upload", + "connect", + "remote", + "screen share" + ], + "categories": [ + "connectivity", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/monitor-x.json b/openv0_server/library/lucide/monitor-x.json new file mode 100644 index 0000000..c7d699f --- /dev/null +++ b/openv0_server/library/lucide/monitor-x.json @@ -0,0 +1,26 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "tv", + "screen", + "display", + "desktop", + "virtual machine", + "vm", + "close", + "stop", + "suspend", + "remove", + "delete" + ], + "categories": [ + "connectivity", + "devices", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/monitor.json b/openv0_server/library/lucide/monitor.json new file mode 100644 index 0000000..6abda6b --- /dev/null +++ b/openv0_server/library/lucide/monitor.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis", + "danielbayley", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "tv", + "screen", + "display", + "virtual machine", + "vm" + ], + "categories": [ + "connectivity", + "devices", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/moon-star.json b/openv0_server/library/lucide/moon-star.json new file mode 100644 index 0000000..60d6129 --- /dev/null +++ b/openv0_server/library/lucide/moon-star.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "dark", + "night", + "star" + ], + "categories": [ + "accessibility", + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/moon.json b/openv0_server/library/lucide/moon.json new file mode 100644 index 0000000..3dd1ed7 --- /dev/null +++ b/openv0_server/library/lucide/moon.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "dark", + "night" + ], + "categories": [ + "accessibility" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/more-horizontal.json b/openv0_server/library/lucide/more-horizontal.json new file mode 100644 index 0000000..7f0258b --- /dev/null +++ b/openv0_server/library/lucide/more-horizontal.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "ellipsis", + "menu", + "options", + "operator", + "code", + "spread", + "rest", + "…", + "..." + ], + "categories": [ + "layout", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/more-vertical.json b/openv0_server/library/lucide/more-vertical.json new file mode 100644 index 0000000..bda5ca5 --- /dev/null +++ b/openv0_server/library/lucide/more-vertical.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "ellipsis", + "menu", + "options" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/mountain-snow.json b/openv0_server/library/lucide/mountain-snow.json new file mode 100644 index 0000000..c80438a --- /dev/null +++ b/openv0_server/library/lucide/mountain-snow.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "kerkeslager", + "ericfennis" + ], + "tags": [ + "alpine", + "climb", + "snow" + ], + "categories": [ + "nature" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/mountain.json b/openv0_server/library/lucide/mountain.json new file mode 100644 index 0000000..7fe3b9b --- /dev/null +++ b/openv0_server/library/lucide/mountain.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "kerkeslager", + "ericfennis", + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "climb", + "hike", + "rock" + ], + "categories": [ + "nature", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/mouse-pointer-2.json b/openv0_server/library/lucide/mouse-pointer-2.json new file mode 100644 index 0000000..989fa38 --- /dev/null +++ b/openv0_server/library/lucide/mouse-pointer-2.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "csandman" + ], + "tags": [ + "arrow", + "cursor", + "click" + ], + "categories": [ + "arrows", + "cursors" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/mouse-pointer-click.json b/openv0_server/library/lucide/mouse-pointer-click.json new file mode 100644 index 0000000..b4f1dd2 --- /dev/null +++ b/openv0_server/library/lucide/mouse-pointer-click.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "arrow", + "cursor", + "click" + ], + "categories": [ + "arrows", + "cursors" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/mouse-pointer-square-dashed.json b/openv0_server/library/lucide/mouse-pointer-square-dashed.json new file mode 100644 index 0000000..ba67b46 --- /dev/null +++ b/openv0_server/library/lucide/mouse-pointer-square-dashed.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "inspector", + "element", + "mouse", + "click", + "pointer", + "box", + "browser", + "selector", + "target", + "dom", + "node" + ], + "categories": [ + "arrows", + "cursors", + "development", + "tools" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/mouse-pointer-square.json b/openv0_server/library/lucide/mouse-pointer-square.json new file mode 100644 index 0000000..16ab2c4 --- /dev/null +++ b/openv0_server/library/lucide/mouse-pointer-square.json @@ -0,0 +1,30 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "inspector", + "element", + "mouse", + "click", + "pointer", + "box", + "browser", + "selector", + "target", + "dom", + "node" + ], + "categories": [ + "arrows", + "cursors", + "development", + "tools" + ], + "aliases": [ + "inspect" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/mouse-pointer.json b/openv0_server/library/lucide/mouse-pointer.json new file mode 100644 index 0000000..db5d247 --- /dev/null +++ b/openv0_server/library/lucide/mouse-pointer.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ashygee", + "ericfennis" + ], + "tags": [ + "arrow", + "cursor", + "click" + ], + "categories": [ + "arrows", + "cursors" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/mouse.json b/openv0_server/library/lucide/mouse.json new file mode 100644 index 0000000..22c8365 --- /dev/null +++ b/openv0_server/library/lucide/mouse.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "device", + "scroll", + "click" + ], + "categories": [ + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/move-3d.json b/openv0_server/library/lucide/move-3d.json new file mode 100644 index 0000000..faab605 --- /dev/null +++ b/openv0_server/library/lucide/move-3d.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "lscheibel", + "ericfennis" + ], + "tags": [ + "arrows", + "axis", + "gizmo", + "coordinates", + "transform", + "translate" + ], + "categories": [ + "design" + ], + "aliases": [ + "move-3-d" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/move-diagonal-2.json b/openv0_server/library/lucide/move-diagonal-2.json new file mode 100644 index 0000000..35e2d7e --- /dev/null +++ b/openv0_server/library/lucide/move-diagonal-2.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "double", + "arrow" + ], + "categories": [ + "arrows", + "cursors" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/move-diagonal.json b/openv0_server/library/lucide/move-diagonal.json new file mode 100644 index 0000000..35e2d7e --- /dev/null +++ b/openv0_server/library/lucide/move-diagonal.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "double", + "arrow" + ], + "categories": [ + "arrows", + "cursors" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/move-down-left.json b/openv0_server/library/lucide/move-down-left.json new file mode 100644 index 0000000..ced23df --- /dev/null +++ b/openv0_server/library/lucide/move-down-left.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "siarie", + "ericfennis", + "karsa-mistmere", + "jonas-hoebenreich" + ], + "tags": [ + "arrow", + "direction" + ], + "categories": [ + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/move-down-right.json b/openv0_server/library/lucide/move-down-right.json new file mode 100644 index 0000000..f46184f --- /dev/null +++ b/openv0_server/library/lucide/move-down-right.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "jonas-hoebenreich" + ], + "tags": [ + "arrow", + "direction" + ], + "categories": [ + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/move-down.json b/openv0_server/library/lucide/move-down.json new file mode 100644 index 0000000..86f0a15 --- /dev/null +++ b/openv0_server/library/lucide/move-down.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "jonas-hoebenreich" + ], + "tags": [ + "arrow", + "direction", + "downwards", + "south" + ], + "categories": [ + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/move-horizontal.json b/openv0_server/library/lucide/move-horizontal.json new file mode 100644 index 0000000..937f7a3 --- /dev/null +++ b/openv0_server/library/lucide/move-horizontal.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "csandman" + ], + "tags": [ + "double", + "arrow" + ], + "categories": [ + "arrows", + "cursors" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/move-left.json b/openv0_server/library/lucide/move-left.json new file mode 100644 index 0000000..aa2d0cc --- /dev/null +++ b/openv0_server/library/lucide/move-left.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "jonas-hoebenreich" + ], + "tags": [ + "arrow", + "direction", + "back", + "west" + ], + "categories": [ + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/move-right.json b/openv0_server/library/lucide/move-right.json new file mode 100644 index 0000000..cff3040 --- /dev/null +++ b/openv0_server/library/lucide/move-right.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "jonas-hoebenreich" + ], + "tags": [ + "arrow", + "direction", + "trend flat", + "east" + ], + "categories": [ + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/move-up-left.json b/openv0_server/library/lucide/move-up-left.json new file mode 100644 index 0000000..f46184f --- /dev/null +++ b/openv0_server/library/lucide/move-up-left.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "jonas-hoebenreich" + ], + "tags": [ + "arrow", + "direction" + ], + "categories": [ + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/move-up-right.json b/openv0_server/library/lucide/move-up-right.json new file mode 100644 index 0000000..f46184f --- /dev/null +++ b/openv0_server/library/lucide/move-up-right.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "jonas-hoebenreich" + ], + "tags": [ + "arrow", + "direction" + ], + "categories": [ + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/move-up.json b/openv0_server/library/lucide/move-up.json new file mode 100644 index 0000000..ce3ef01 --- /dev/null +++ b/openv0_server/library/lucide/move-up.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "jonas-hoebenreich" + ], + "tags": [ + "arrow", + "direction", + "upwards", + "north" + ], + "categories": [ + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/move-vertical.json b/openv0_server/library/lucide/move-vertical.json new file mode 100644 index 0000000..35e2d7e --- /dev/null +++ b/openv0_server/library/lucide/move-vertical.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "double", + "arrow" + ], + "categories": [ + "arrows", + "cursors" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/move.json b/openv0_server/library/lucide/move.json new file mode 100644 index 0000000..70e302d --- /dev/null +++ b/openv0_server/library/lucide/move.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "arrows" + ], + "categories": [ + "arrows", + "cursors" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/music-2.json b/openv0_server/library/lucide/music-2.json new file mode 100644 index 0000000..43ef797 --- /dev/null +++ b/openv0_server/library/lucide/music-2.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "it-is-not", + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "quaver", + "eighth note", + "note" + ], + "categories": [ + "multimedia", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/music-3.json b/openv0_server/library/lucide/music-3.json new file mode 100644 index 0000000..85e12ab --- /dev/null +++ b/openv0_server/library/lucide/music-3.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "it-is-not", + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "crotchet", + "minim", + "quarter note", + "half note", + "note" + ], + "categories": [ + "multimedia", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/music-4.json b/openv0_server/library/lucide/music-4.json new file mode 100644 index 0000000..64e5e58 --- /dev/null +++ b/openv0_server/library/lucide/music-4.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "it-is-not", + "karsa-mistmere" + ], + "tags": [ + "semiquaver", + "sixteenth note", + "note" + ], + "categories": [ + "multimedia", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/music.json b/openv0_server/library/lucide/music.json new file mode 100644 index 0000000..6d839f4 --- /dev/null +++ b/openv0_server/library/lucide/music.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "mittalyashu", + "ericfennis" + ], + "tags": [ + "note", + "quaver", + "eighth note" + ], + "categories": [ + "multimedia", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/navigation-2-off.json b/openv0_server/library/lucide/navigation-2-off.json new file mode 100644 index 0000000..67274c8 --- /dev/null +++ b/openv0_server/library/lucide/navigation-2-off.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "location", + "travel" + ], + "categories": [ + "navigation", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/navigation-2.json b/openv0_server/library/lucide/navigation-2.json new file mode 100644 index 0000000..d4f81f0 --- /dev/null +++ b/openv0_server/library/lucide/navigation-2.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "location", + "travel" + ], + "categories": [ + "navigation", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/navigation-off.json b/openv0_server/library/lucide/navigation-off.json new file mode 100644 index 0000000..67274c8 --- /dev/null +++ b/openv0_server/library/lucide/navigation-off.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "location", + "travel" + ], + "categories": [ + "navigation", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/navigation.json b/openv0_server/library/lucide/navigation.json new file mode 100644 index 0000000..d4f81f0 --- /dev/null +++ b/openv0_server/library/lucide/navigation.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "location", + "travel" + ], + "categories": [ + "navigation", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/network.json b/openv0_server/library/lucide/network.json new file mode 100644 index 0000000..ecab2bc --- /dev/null +++ b/openv0_server/library/lucide/network.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "johnletey", + "csandman", + "karsa-mistmere" + ], + "tags": [ + "tree" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/newspaper.json b/openv0_server/library/lucide/newspaper.json new file mode 100644 index 0000000..680b2ce --- /dev/null +++ b/openv0_server/library/lucide/newspaper.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "news", + "feed", + "home", + "magazine", + "article", + "headline" + ], + "categories": [ + "multimedia", + "communication" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/nfc.json b/openv0_server/library/lucide/nfc.json new file mode 100644 index 0000000..94155ab --- /dev/null +++ b/openv0_server/library/lucide/nfc.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas", + "ericfennis" + ], + "tags": [ + "contactless", + "payment", + "near-field communication" + ], + "categories": [ + "communication", + "money", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/nut-off.json b/openv0_server/library/lucide/nut-off.json new file mode 100644 index 0000000..3997668 --- /dev/null +++ b/openv0_server/library/lucide/nut-off.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "hazelnut", + "acorn", + "food", + "allergy", + "intolerance", + "diet" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/nut.json b/openv0_server/library/lucide/nut.json new file mode 100644 index 0000000..2149b49 --- /dev/null +++ b/openv0_server/library/lucide/nut.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "hazelnut", + "acorn", + "food", + "diet" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/octagon.json b/openv0_server/library/lucide/octagon.json new file mode 100644 index 0000000..0477a27 --- /dev/null +++ b/openv0_server/library/lucide/octagon.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "stop", + "shape" + ], + "categories": [ + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/option.json b/openv0_server/library/lucide/option.json new file mode 100644 index 0000000..512b2a2 --- /dev/null +++ b/openv0_server/library/lucide/option.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "keyboard", + "key", + "mac", + "alt", + "button" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/orbit.json b/openv0_server/library/lucide/orbit.json new file mode 100644 index 0000000..ad41861 --- /dev/null +++ b/openv0_server/library/lucide/orbit.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "planet", + "space", + "physics", + "satellites", + "moons" + ], + "categories": [ + "science" + ] +} diff --git a/openv0_server/library/lucide/outdent.json b/openv0_server/library/lucide/outdent.json new file mode 100644 index 0000000..af348ff --- /dev/null +++ b/openv0_server/library/lucide/outdent.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Themistoklis", + "ericfennis" + ], + "tags": [ + "text", + "tab" + ], + "categories": [ + "text", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/package-2.json b/openv0_server/library/lucide/package-2.json new file mode 100644 index 0000000..140ed52 --- /dev/null +++ b/openv0_server/library/lucide/package-2.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "box", + "container", + "archive", + "zip" + ], + "categories": [ + "files", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/package-check.json b/openv0_server/library/lucide/package-check.json new file mode 100644 index 0000000..cbb9ca8 --- /dev/null +++ b/openv0_server/library/lucide/package-check.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Reund0", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "confirm", + "verified", + "done", + "todo", + "tick", + "complete", + "task" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/package-minus.json b/openv0_server/library/lucide/package-minus.json new file mode 100644 index 0000000..554703d --- /dev/null +++ b/openv0_server/library/lucide/package-minus.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Reund0", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "delete", + "remove" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/package-open.json b/openv0_server/library/lucide/package-open.json new file mode 100644 index 0000000..0d258c3 --- /dev/null +++ b/openv0_server/library/lucide/package-open.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "box", + "container", + "unpack", + "open" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/package-plus.json b/openv0_server/library/lucide/package-plus.json new file mode 100644 index 0000000..7a20349 --- /dev/null +++ b/openv0_server/library/lucide/package-plus.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Reund0", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "new", + "add", + "create" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/package-search.json b/openv0_server/library/lucide/package-search.json new file mode 100644 index 0000000..f6cb951 --- /dev/null +++ b/openv0_server/library/lucide/package-search.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Reund0", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "find", + "product process" + ], + "categories": [ + "files", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/package-x.json b/openv0_server/library/lucide/package-x.json new file mode 100644 index 0000000..554703d --- /dev/null +++ b/openv0_server/library/lucide/package-x.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Reund0", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "delete", + "remove" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/package.json b/openv0_server/library/lucide/package.json new file mode 100644 index 0000000..0c157c3 --- /dev/null +++ b/openv0_server/library/lucide/package.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere", + "danielbayley" + ], + "tags": [ + "box", + "container" + ], + "categories": [ + "files", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/paint-bucket.json b/openv0_server/library/lucide/paint-bucket.json new file mode 100644 index 0000000..3c93251 --- /dev/null +++ b/openv0_server/library/lucide/paint-bucket.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "fill", + "paint", + "bucket", + "design" + ], + "categories": [ + "design" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/paintbrush-2.json b/openv0_server/library/lucide/paintbrush-2.json new file mode 100644 index 0000000..b19f4d8 --- /dev/null +++ b/openv0_server/library/lucide/paintbrush-2.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "brush", + "paintbrush", + "design", + "color" + ], + "categories": [ + "text", + "design", + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/paintbrush.json b/openv0_server/library/lucide/paintbrush.json new file mode 100644 index 0000000..025f0c5 --- /dev/null +++ b/openv0_server/library/lucide/paintbrush.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "brush", + "paintbrush", + "design", + "color" + ], + "categories": [ + "text", + "design", + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/palette.json b/openv0_server/library/lucide/palette.json new file mode 100644 index 0000000..c25724e --- /dev/null +++ b/openv0_server/library/lucide/palette.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "csandman" + ], + "tags": [ + "color", + "theme" + ], + "categories": [ + "text", + "design", + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/palmtree.json b/openv0_server/library/lucide/palmtree.json new file mode 100644 index 0000000..34ccbcd --- /dev/null +++ b/openv0_server/library/lucide/palmtree.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "vacation", + "leisure", + "island" + ], + "categories": [ + "nature" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/panel-bottom-close.json b/openv0_server/library/lucide/panel-bottom-close.json new file mode 100644 index 0000000..f06e206 --- /dev/null +++ b/openv0_server/library/lucide/panel-bottom-close.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "drawer", + "dock", + "hide" + ], + "categories": [ + "layout", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/panel-bottom-inactive.json b/openv0_server/library/lucide/panel-bottom-inactive.json new file mode 100644 index 0000000..d105deb --- /dev/null +++ b/openv0_server/library/lucide/panel-bottom-inactive.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "drawer", + "dock", + "show", + "reveal", + "dashed" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/panel-bottom-open.json b/openv0_server/library/lucide/panel-bottom-open.json new file mode 100644 index 0000000..79f9a27 --- /dev/null +++ b/openv0_server/library/lucide/panel-bottom-open.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "drawer", + "dock", + "show", + "reveal" + ], + "categories": [ + "layout", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/panel-bottom.json b/openv0_server/library/lucide/panel-bottom.json new file mode 100644 index 0000000..fc89daf --- /dev/null +++ b/openv0_server/library/lucide/panel-bottom.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "drawer", + "dock" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/panel-left-close.json b/openv0_server/library/lucide/panel-left-close.json new file mode 100644 index 0000000..99d7f06 --- /dev/null +++ b/openv0_server/library/lucide/panel-left-close.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "danielbayley", + "ericfennis" + ], + "aliases": ["sidebar-close"], + "tags": [ + "primary", + "drawer", + "hide" + ], + "categories": [ + "layout", + "arrows" + ] +} diff --git a/openv0_server/library/lucide/panel-left-inactive.json b/openv0_server/library/lucide/panel-left-inactive.json new file mode 100644 index 0000000..00a7280 --- /dev/null +++ b/openv0_server/library/lucide/panel-left-inactive.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "sidebar", + "primary", + "drawer", + "show", + "reveal", + "dashed" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/panel-left-open.json b/openv0_server/library/lucide/panel-left-open.json new file mode 100644 index 0000000..cafe447 --- /dev/null +++ b/openv0_server/library/lucide/panel-left-open.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "danielbayley", + "ericfennis" + ], + "aliases": ["sidebar-open"], + "tags": [ + "primary", + "drawer", + "show", + "reveal" + ], + "categories": [ + "layout", + "arrows" + ] +} diff --git a/openv0_server/library/lucide/panel-left.json b/openv0_server/library/lucide/panel-left.json new file mode 100644 index 0000000..ad3675c --- /dev/null +++ b/openv0_server/library/lucide/panel-left.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "danielbayley", + "ericfennis" + ], + "aliases": ["sidebar"], + "tags": [ + "primary", + "drawer" + ], + "categories": [ + "layout" + ] +} diff --git a/openv0_server/library/lucide/panel-right-close.json b/openv0_server/library/lucide/panel-right-close.json new file mode 100644 index 0000000..9cd1b5f --- /dev/null +++ b/openv0_server/library/lucide/panel-right-close.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "sidebar", + "secondary", + "drawer", + "hide" + ], + "categories": [ + "layout", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/panel-right-inactive.json b/openv0_server/library/lucide/panel-right-inactive.json new file mode 100644 index 0000000..6d11046 --- /dev/null +++ b/openv0_server/library/lucide/panel-right-inactive.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "sidebar", + "secondary", + "drawer", + "show", + "reveal", + "dashed" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/panel-right-open.json b/openv0_server/library/lucide/panel-right-open.json new file mode 100644 index 0000000..67fb115 --- /dev/null +++ b/openv0_server/library/lucide/panel-right-open.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "sidebar", + "secondary", + "drawer", + "show", + "reveal" + ], + "categories": [ + "layout", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/panel-right.json b/openv0_server/library/lucide/panel-right.json new file mode 100644 index 0000000..bfa0579 --- /dev/null +++ b/openv0_server/library/lucide/panel-right.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "sidebar", + "secondary", + "drawer" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/panel-top-close.json b/openv0_server/library/lucide/panel-top-close.json new file mode 100644 index 0000000..6565320 --- /dev/null +++ b/openv0_server/library/lucide/panel-top-close.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "menu bar", + "drawer", + "hide" + ], + "categories": [ + "layout", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/panel-top-inactive.json b/openv0_server/library/lucide/panel-top-inactive.json new file mode 100644 index 0000000..27ffb32 --- /dev/null +++ b/openv0_server/library/lucide/panel-top-inactive.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "menu bar", + "drawer", + "show", + "reveal", + "dashed" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/panel-top-open.json b/openv0_server/library/lucide/panel-top-open.json new file mode 100644 index 0000000..ab3d9fe --- /dev/null +++ b/openv0_server/library/lucide/panel-top-open.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "menu bar", + "drawer", + "show", + "reveal" + ], + "categories": [ + "layout", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/panel-top.json b/openv0_server/library/lucide/panel-top.json new file mode 100644 index 0000000..ed3d443 --- /dev/null +++ b/openv0_server/library/lucide/panel-top.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "drawer", + "menu bar", + "browser", + "webpage" + ], + "categories": [ + "layout", + "design", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/paperclip.json b/openv0_server/library/lucide/paperclip.json new file mode 100644 index 0000000..6a8157f --- /dev/null +++ b/openv0_server/library/lucide/paperclip.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "attachment", + "file" + ], + "categories": [ + "text", + "design", + "files", + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/parentheses.json b/openv0_server/library/lucide/parentheses.json new file mode 100644 index 0000000..aef3945 --- /dev/null +++ b/openv0_server/library/lucide/parentheses.json @@ -0,0 +1,29 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "code", + "token", + "parenthesis", + "parens", + "brackets", + "parameters", + "arguments", + "args", + "input", + "call", + "maths", + "formula", + "function", + "(", + ")" + ], + "categories": [ + "development", + "files", + "maths" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/parking-circle-off.json b/openv0_server/library/lucide/parking-circle-off.json new file mode 100644 index 0000000..4e88592 --- /dev/null +++ b/openv0_server/library/lucide/parking-circle-off.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas", + "ericfennis" + ], + "tags": [ + "parking lot", + "car park", + "no parking" + ], + "categories": [ + "transportation", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/parking-circle.json b/openv0_server/library/lucide/parking-circle.json new file mode 100644 index 0000000..f350d4c --- /dev/null +++ b/openv0_server/library/lucide/parking-circle.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "parking lot", + "car park" + ], + "categories": [ + "transportation", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/parking-meter.json b/openv0_server/library/lucide/parking-meter.json new file mode 100644 index 0000000..6d4d6fe --- /dev/null +++ b/openv0_server/library/lucide/parking-meter.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "driving", + "car park", + "pay", + "sidewalk", + "pavement" + ], + "categories": [ + "transportation", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/parking-square-off.json b/openv0_server/library/lucide/parking-square-off.json new file mode 100644 index 0000000..525c3a4 --- /dev/null +++ b/openv0_server/library/lucide/parking-square-off.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas", + "danielbayley" + ], + "tags": [ + "parking lot", + "car park", + "no parking" + ], + "categories": [ + "transportation", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/parking-square.json b/openv0_server/library/lucide/parking-square.json new file mode 100644 index 0000000..e957030 --- /dev/null +++ b/openv0_server/library/lucide/parking-square.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas", + "danielbayley" + ], + "tags": [ + "parking lot", + "car park" + ], + "categories": [ + "transportation", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/party-popper.json b/openv0_server/library/lucide/party-popper.json new file mode 100644 index 0000000..6ffbd13 --- /dev/null +++ b/openv0_server/library/lucide/party-popper.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "emoji", + "congratulations", + "celebration", + "party", + "tada", + "🎉", + "🎊", + "excitement", + "exciting", + "excites", + "confetti" + ], + "categories": [ + "emoji" + ] +} diff --git a/openv0_server/library/lucide/pause-circle.json b/openv0_server/library/lucide/pause-circle.json new file mode 100644 index 0000000..e109cd2 --- /dev/null +++ b/openv0_server/library/lucide/pause-circle.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "music", + "audio", + "stop" + ], + "categories": [ + "multimedia", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pause-octagon.json b/openv0_server/library/lucide/pause-octagon.json new file mode 100644 index 0000000..132b9b6 --- /dev/null +++ b/openv0_server/library/lucide/pause-octagon.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu" + ], + "tags": [ + "music", + "audio", + "stop" + ], + "categories": [ + "multimedia", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pause.json b/openv0_server/library/lucide/pause.json new file mode 100644 index 0000000..337c6d1 --- /dev/null +++ b/openv0_server/library/lucide/pause.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "music", + "stop" + ], + "categories": [ + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/paw-print.json b/openv0_server/library/lucide/paw-print.json new file mode 100644 index 0000000..0876ec4 --- /dev/null +++ b/openv0_server/library/lucide/paw-print.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "pets", + "vets", + "veterinarian", + "domesticated", + "cat", + "dog", + "bear" + ], + "categories": [ + "animals" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pc-case.json b/openv0_server/library/lucide/pc-case.json new file mode 100644 index 0000000..caf8aa6 --- /dev/null +++ b/openv0_server/library/lucide/pc-case.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "computer", + "chassis" + ], + "categories": [ + "devices", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pen-line.json b/openv0_server/library/lucide/pen-line.json new file mode 100644 index 0000000..f97bcad --- /dev/null +++ b/openv0_server/library/lucide/pen-line.json @@ -0,0 +1,31 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "mittalyashu", + "ericfennis" + ], + "tags": [ + "pencil", + "change", + "create", + "draw", + "writer", + "writing", + "biro", + "ink", + "marker", + "felt tip", + "stationery", + "artist" + ], + "categories": [ + "text", + "design", + "tools" + ], + "aliases": [ + "edit-3" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pen-square.json b/openv0_server/library/lucide/pen-square.json new file mode 100644 index 0000000..cdd720b --- /dev/null +++ b/openv0_server/library/lucide/pen-square.json @@ -0,0 +1,32 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "mittalyashu", + "ericfennis" + ], + "tags": [ + "pencil", + "change", + "create", + "draw", + "sketch", + "draft", + "writer", + "writing", + "biro", + "ink", + "marker", + "felt tip", + "stationery", + "artist" + ], + "categories": [ + "text" + ], + "aliases": [ + "pen-box", + "edit" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pen-tool.json b/openv0_server/library/lucide/pen-tool.json new file mode 100644 index 0000000..0dff1df --- /dev/null +++ b/openv0_server/library/lucide/pen-tool.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ashygee", + "mittalyashu", + "ericfennis" + ], + "tags": [ + "vector", + "drawing", + "path" + ], + "categories": [ + "text", + "design", + "cursors" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pen.json b/openv0_server/library/lucide/pen.json new file mode 100644 index 0000000..29c1026 --- /dev/null +++ b/openv0_server/library/lucide/pen.json @@ -0,0 +1,31 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "mittalyashu", + "ericfennis" + ], + "tags": [ + "pencil", + "change", + "create", + "draw", + "writer", + "writing", + "biro", + "ink", + "marker", + "felt tip", + "stationery", + "artist" + ], + "categories": [ + "text", + "design", + "tools" + ], + "aliases": [ + "edit-2" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pencil-line.json b/openv0_server/library/lucide/pencil-line.json new file mode 100644 index 0000000..6320ae3 --- /dev/null +++ b/openv0_server/library/lucide/pencil-line.json @@ -0,0 +1,31 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "mittalyashu", + "ericfennis", + "danielbayley" + ], + "tags": [ + "pencil", + "change", + "create", + "draw", + "sketch", + "draft", + "writer", + "writing", + "biro", + "ink", + "marker", + "felt tip", + "stationery", + "artist" + ], + "categories": [ + "text", + "design", + "tools" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pencil-ruler.json b/openv0_server/library/lucide/pencil-ruler.json new file mode 100644 index 0000000..64d591a --- /dev/null +++ b/openv0_server/library/lucide/pencil-ruler.json @@ -0,0 +1,41 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "edit", + "create", + "draw", + "sketch", + "draft", + "writer", + "writing", + "stationery", + "artist", + "measurements", + "centimeters", + "cm", + "millimeters", + "mm", + "metre", + "foot", + "feet", + "inches", + "units", + "size", + "length", + "width", + "height", + "dimensions", + "depth", + "breadth", + "extent" + ], + "categories": [ + "tools", + "design", + "layout", + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pencil.json b/openv0_server/library/lucide/pencil.json new file mode 100644 index 0000000..dd1524c --- /dev/null +++ b/openv0_server/library/lucide/pencil.json @@ -0,0 +1,27 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "wojtekmaj", + "mittalyashu", + "danielbayley" + ], + "tags": [ + "rubber", + "edit", + "create", + "draw", + "sketch", + "draft", + "writer", + "writing", + "stationery", + "artist" + ], + "categories": [ + "design", + "cursors", + "tools", + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/percent-circle.json b/openv0_server/library/lucide/percent-circle.json new file mode 100644 index 0000000..8122963 --- /dev/null +++ b/openv0_server/library/lucide/percent-circle.json @@ -0,0 +1,24 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "verified", + "unverified", + "sale", + "discount", + "offer", + "marketing", + "sticker", + "price tag" + ], + "categories": [ + "account", + "social", + "money", + "shopping", + "maths", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/percent-diamond.json b/openv0_server/library/lucide/percent-diamond.json new file mode 100644 index 0000000..8122963 --- /dev/null +++ b/openv0_server/library/lucide/percent-diamond.json @@ -0,0 +1,24 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "verified", + "unverified", + "sale", + "discount", + "offer", + "marketing", + "sticker", + "price tag" + ], + "categories": [ + "account", + "social", + "money", + "shopping", + "maths", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/percent-square.json b/openv0_server/library/lucide/percent-square.json new file mode 100644 index 0000000..8122963 --- /dev/null +++ b/openv0_server/library/lucide/percent-square.json @@ -0,0 +1,24 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "verified", + "unverified", + "sale", + "discount", + "offer", + "marketing", + "sticker", + "price tag" + ], + "categories": [ + "account", + "social", + "money", + "shopping", + "maths", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/percent.json b/openv0_server/library/lucide/percent.json new file mode 100644 index 0000000..d604f6d --- /dev/null +++ b/openv0_server/library/lucide/percent.json @@ -0,0 +1,24 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "percentage", + "modulo", + "modulus", + "remainder", + "%", + "sale", + "discount", + "offer", + "marketing" + ], + "categories": [ + "maths", + "development", + "money", + "shopping" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/person-standing.json b/openv0_server/library/lucide/person-standing.json new file mode 100644 index 0000000..a6e3222 --- /dev/null +++ b/openv0_server/library/lucide/person-standing.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "people", + "human", + "accessibility", + "stick figure" + ], + "categories": [ + "accessibility", + "people" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/phone-call.json b/openv0_server/library/lucide/phone-call.json new file mode 100644 index 0000000..75a48d9 --- /dev/null +++ b/openv0_server/library/lucide/phone-call.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis", + "csandman", + "karsa-mistmere" + ], + "tags": [ + "ring" + ], + "categories": [ + "connectivity", + "devices", + "communication" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/phone-forwarded.json b/openv0_server/library/lucide/phone-forwarded.json new file mode 100644 index 0000000..54a3f7e --- /dev/null +++ b/openv0_server/library/lucide/phone-forwarded.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis", + "csandman" + ], + "tags": [ + "call" + ], + "categories": [ + "arrows", + "connectivity", + "devices", + "communication" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/phone-incoming.json b/openv0_server/library/lucide/phone-incoming.json new file mode 100644 index 0000000..54a3f7e --- /dev/null +++ b/openv0_server/library/lucide/phone-incoming.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis", + "csandman" + ], + "tags": [ + "call" + ], + "categories": [ + "arrows", + "connectivity", + "devices", + "communication" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/phone-missed.json b/openv0_server/library/lucide/phone-missed.json new file mode 100644 index 0000000..c9ff660 --- /dev/null +++ b/openv0_server/library/lucide/phone-missed.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis", + "csandman" + ], + "tags": [ + "call" + ], + "categories": [ + "connectivity", + "devices", + "communication" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/phone-off.json b/openv0_server/library/lucide/phone-off.json new file mode 100644 index 0000000..436a7cc --- /dev/null +++ b/openv0_server/library/lucide/phone-off.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis", + "csandman" + ], + "tags": [ + "call", + "mute" + ], + "categories": [ + "connectivity", + "devices", + "communication" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/phone-outgoing.json b/openv0_server/library/lucide/phone-outgoing.json new file mode 100644 index 0000000..54a3f7e --- /dev/null +++ b/openv0_server/library/lucide/phone-outgoing.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis", + "csandman" + ], + "tags": [ + "call" + ], + "categories": [ + "arrows", + "connectivity", + "devices", + "communication" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/phone.json b/openv0_server/library/lucide/phone.json new file mode 100644 index 0000000..8f27cba --- /dev/null +++ b/openv0_server/library/lucide/phone.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "call" + ], + "categories": [ + "text", + "connectivity", + "devices", + "communication" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pi-square.json b/openv0_server/library/lucide/pi-square.json new file mode 100644 index 0000000..1cb6325 --- /dev/null +++ b/openv0_server/library/lucide/pi-square.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "constant", + "code", + "coding", + "programming", + "symbol", + "trigonometry", + "geometry", + "formula" + ], + "categories": [ + "development", + "maths", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pi.json b/openv0_server/library/lucide/pi.json new file mode 100644 index 0000000..dbbb1a6 --- /dev/null +++ b/openv0_server/library/lucide/pi.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas" + ], + "tags": [ + "constant", + "code", + "coding", + "programming", + "symbol", + "trigonometry", + "geometry", + "formula" + ], + "categories": [ + "development", + "maths", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/picture-in-picture-2.json b/openv0_server/library/lucide/picture-in-picture-2.json new file mode 100644 index 0000000..1a6d0ee --- /dev/null +++ b/openv0_server/library/lucide/picture-in-picture-2.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "cd16b", + "ericfennis" + ], + "tags": [ + "display", + "play", + "video", + "pop out", + "always on top", + "window", + "inset", + "multitask" + ], + "categories": [ + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/picture-in-picture.json b/openv0_server/library/lucide/picture-in-picture.json new file mode 100644 index 0000000..1a6d0ee --- /dev/null +++ b/openv0_server/library/lucide/picture-in-picture.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "cd16b", + "ericfennis" + ], + "tags": [ + "display", + "play", + "video", + "pop out", + "always on top", + "window", + "inset", + "multitask" + ], + "categories": [ + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pie-chart.json b/openv0_server/library/lucide/pie-chart.json new file mode 100644 index 0000000..f397016 --- /dev/null +++ b/openv0_server/library/lucide/pie-chart.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "statistics", + "diagram", + "presentation" + ], + "categories": [ + "charts", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/piggy-bank.json b/openv0_server/library/lucide/piggy-bank.json new file mode 100644 index 0000000..6daa069 --- /dev/null +++ b/openv0_server/library/lucide/piggy-bank.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "money", + "savings" + ], + "categories": [ + "money" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pilcrow-square.json b/openv0_server/library/lucide/pilcrow-square.json new file mode 100644 index 0000000..783714f --- /dev/null +++ b/openv0_server/library/lucide/pilcrow-square.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "paragraph", + "mark", + "paraph", + "blind", + "typography", + "type", + "text", + "prose", + "symbol" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pilcrow.json b/openv0_server/library/lucide/pilcrow.json new file mode 100644 index 0000000..9de7514 --- /dev/null +++ b/openv0_server/library/lucide/pilcrow.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "paragraph", + "mark", + "paraph", + "blind", + "typography", + "type", + "text", + "prose", + "symbol" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pill.json b/openv0_server/library/lucide/pill.json new file mode 100644 index 0000000..6466d3e --- /dev/null +++ b/openv0_server/library/lucide/pill.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "it-is-not" + ], + "tags": [ + "medicine", + "medication", + "drug", + "prescription", + "tablet", + "pharmacy" + ], + "categories": [ + "medical" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pin-off.json b/openv0_server/library/lucide/pin-off.json new file mode 100644 index 0000000..ddfeefe --- /dev/null +++ b/openv0_server/library/lucide/pin-off.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "unpin", + "map", + "unlock", + "unfix", + "unsave", + "remove" + ], + "categories": [ + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pin.json b/openv0_server/library/lucide/pin.json new file mode 100644 index 0000000..fe02c1d --- /dev/null +++ b/openv0_server/library/lucide/pin.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "save", + "map", + "lock", + "fix" + ], + "categories": [ + "maps", + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pipette.json b/openv0_server/library/lucide/pipette.json new file mode 100644 index 0000000..01b6201 --- /dev/null +++ b/openv0_server/library/lucide/pipette.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "eye dropper", + "color picker", + "lab", + "chemistry" + ], + "categories": [ + "text", + "design", + "science" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pizza.json b/openv0_server/library/lucide/pizza.json new file mode 100644 index 0000000..50f10b0 --- /dev/null +++ b/openv0_server/library/lucide/pizza.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis", + "jguddas" + ], + "tags": [ + "pie", + "quiche", + "food" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/plane-landing.json b/openv0_server/library/lucide/plane-landing.json new file mode 100644 index 0000000..1e2f2f5 --- /dev/null +++ b/openv0_server/library/lucide/plane-landing.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "it-is-not" + ], + "tags": [ + "arrival", + "plane", + "trip", + "airplane", + "landing" + ], + "categories": [ + "transportation", + "travel" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/plane-takeoff.json b/openv0_server/library/lucide/plane-takeoff.json new file mode 100644 index 0000000..91d42f4 --- /dev/null +++ b/openv0_server/library/lucide/plane-takeoff.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "it-is-not" + ], + "tags": [ + "departure", + "plane", + "trip", + "airplane", + "takeoff" + ], + "categories": [ + "transportation", + "travel" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/plane.json b/openv0_server/library/lucide/plane.json new file mode 100644 index 0000000..b54bd7d --- /dev/null +++ b/openv0_server/library/lucide/plane.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ahtohbi4", + "csandman", + "ericfennis" + ], + "tags": [ + "plane", + "trip", + "airplane" + ], + "categories": [ + "transportation", + "travel" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/play-circle.json b/openv0_server/library/lucide/play-circle.json new file mode 100644 index 0000000..5efdeef --- /dev/null +++ b/openv0_server/library/lucide/play-circle.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "music", + "start", + "run" + ], + "categories": [ + "shapes", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/play-square.json b/openv0_server/library/lucide/play-square.json new file mode 100644 index 0000000..28d99fe --- /dev/null +++ b/openv0_server/library/lucide/play-square.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "music", + "audio", + "video", + "start", + "run" + ], + "categories": [ + "arrows", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/play.json b/openv0_server/library/lucide/play.json new file mode 100644 index 0000000..5a349c1 --- /dev/null +++ b/openv0_server/library/lucide/play.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "music", + "audio", + "video", + "start", + "run" + ], + "categories": [ + "arrows", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/plug-2.json b/openv0_server/library/lucide/plug-2.json new file mode 100644 index 0000000..7797648 --- /dev/null +++ b/openv0_server/library/lucide/plug-2.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "electricity", + "socket", + "outlet" + ], + "categories": [ + "devices", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/plug-zap-2.json b/openv0_server/library/lucide/plug-zap-2.json new file mode 100644 index 0000000..650f7ec --- /dev/null +++ b/openv0_server/library/lucide/plug-zap-2.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "electricity", + "electronics", + "charge", + "charging", + "battery", + "connect" + ], + "categories": [ + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/plug-zap.json b/openv0_server/library/lucide/plug-zap.json new file mode 100644 index 0000000..232a98c --- /dev/null +++ b/openv0_server/library/lucide/plug-zap.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "jguddas", + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "electricity", + "electronics", + "charge", + "charging", + "battery", + "connect" + ], + "categories": [ + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/plug.json b/openv0_server/library/lucide/plug.json new file mode 100644 index 0000000..16d09a8 --- /dev/null +++ b/openv0_server/library/lucide/plug.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "electricity", + "electronics", + "socket", + "outlet" + ], + "categories": [ + "devices", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/plus-circle.json b/openv0_server/library/lucide/plus-circle.json new file mode 100644 index 0000000..c93dda5 --- /dev/null +++ b/openv0_server/library/lucide/plus-circle.json @@ -0,0 +1,37 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "add", + "new", + "increase", + "increment", + "positive", + "calculate", + "crosshair", + "aim", + "target", + "scope", + "sight", + "reticule", + "maximum", + "upgrade", + "extra", + "operator", + "join", + "concatenate", + "code", + "coding", + "+" + ], + "categories": [ + "maths", + "development", + "shapes", + "cursors", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/plus-square.json b/openv0_server/library/lucide/plus-square.json new file mode 100644 index 0000000..4d37da2 --- /dev/null +++ b/openv0_server/library/lucide/plus-square.json @@ -0,0 +1,35 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "add", + "new", + "increase", + "increment", + "positive", + "calculate", + "calculator", + "button", + "keyboard", + "toolbar", + "maximum", + "upgrade", + "extra", + "operator", + "join", + "concatenate", + "code", + "coding", + "+" + ], + "categories": [ + "maths", + "tools", + "development", + "text", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/plus.json b/openv0_server/library/lucide/plus.json new file mode 100644 index 0000000..dd89781 --- /dev/null +++ b/openv0_server/library/lucide/plus.json @@ -0,0 +1,34 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "add", + "new", + "increase", + "increment", + "positive", + "calculate", + "toolbar", + "crosshair", + "aim", + "target", + "scope", + "sight", + "reticule", + "maximum", + "upgrade", + "extra", + "+" + ], + "categories": [ + "maths", + "tools", + "development", + "text", + "cursors", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pocket-knife.json b/openv0_server/library/lucide/pocket-knife.json new file mode 100644 index 0000000..e5532b1 --- /dev/null +++ b/openv0_server/library/lucide/pocket-knife.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "swiss army knife", + "penknife", + "multi-tool", + "multitask", + "blade", + "cutter", + "gadget", + "corkscrew" + ], + "categories": [ + "tools" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pocket.json b/openv0_server/library/lucide/pocket.json new file mode 100644 index 0000000..b23a8cf --- /dev/null +++ b/openv0_server/library/lucide/pocket.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "logo", + "save" + ], + "categories": [ + "brands", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/podcast.json b/openv0_server/library/lucide/podcast.json new file mode 100644 index 0000000..f5091a7 --- /dev/null +++ b/openv0_server/library/lucide/podcast.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "iiaishwarya", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "mic", + "music" + ], + "categories": [ + "multimedia", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pointer.json b/openv0_server/library/lucide/pointer.json new file mode 100644 index 0000000..732fb38 --- /dev/null +++ b/openv0_server/library/lucide/pointer.json @@ -0,0 +1,12 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "mouse" + ], + "categories": [ + "cursors" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/popcorn.json b/openv0_server/library/lucide/popcorn.json new file mode 100644 index 0000000..08f8d00 --- /dev/null +++ b/openv0_server/library/lucide/popcorn.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "cinema", + "movies", + "films", + "salted", + "sweet", + "sugar", + "candy", + "snack" + ], + "categories": [ + "food-beverage", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/popsicle.json b/openv0_server/library/lucide/popsicle.json new file mode 100644 index 0000000..52145af --- /dev/null +++ b/openv0_server/library/lucide/popsicle.json @@ -0,0 +1,12 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "ice lolly", + "ice cream", + "sweet", + "food" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/pound-sterling.json b/openv0_server/library/lucide/pound-sterling.json new file mode 100644 index 0000000..c70558d --- /dev/null +++ b/openv0_server/library/lucide/pound-sterling.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "mittalyashu" + ], + "tags": [ + "currency", + "money", + "payment" + ], + "categories": [ + "currency", + "money" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/power-off.json b/openv0_server/library/lucide/power-off.json new file mode 100644 index 0000000..25e1b25 --- /dev/null +++ b/openv0_server/library/lucide/power-off.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "on", + "off", + "device", + "switch" + ], + "categories": [ + "connectivity" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/power.json b/openv0_server/library/lucide/power.json new file mode 100644 index 0000000..e7703cf --- /dev/null +++ b/openv0_server/library/lucide/power.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "on", + "off", + "device", + "switch", + "reboot", + "restart" + ], + "categories": [ + "connectivity" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/presentation.json b/openv0_server/library/lucide/presentation.json new file mode 100644 index 0000000..cca0163 --- /dev/null +++ b/openv0_server/library/lucide/presentation.json @@ -0,0 +1,29 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "screen", + "whiteboard", + "marker pens", + "markers", + "blackboard", + "chalk", + "easel", + "school", + "learning", + "lesson", + "office", + "meeting", + "project", + "planning" + ], + "categories": [ + "multimedia", + "photography", + "devices", + "communication", + "design" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/printer.json b/openv0_server/library/lucide/printer.json new file mode 100644 index 0000000..70a6468 --- /dev/null +++ b/openv0_server/library/lucide/printer.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "fax", + "office", + "device" + ], + "categories": [ + "devices", + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/projector.json b/openv0_server/library/lucide/projector.json new file mode 100644 index 0000000..8ce6b42 --- /dev/null +++ b/openv0_server/library/lucide/projector.json @@ -0,0 +1,24 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "cinema", + "film", + "movie", + "home video", + "presentation", + "slideshow", + "office", + "meeting", + "project", + "planning" + ], + "categories": [ + "multimedia", + "photography", + "devices", + "communication" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/puzzle.json b/openv0_server/library/lucide/puzzle.json new file mode 100644 index 0000000..e99b25b --- /dev/null +++ b/openv0_server/library/lucide/puzzle.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "component", + "module", + "part", + "piece" + ], + "categories": [ + "development", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/qr-code.json b/openv0_server/library/lucide/qr-code.json new file mode 100644 index 0000000..ec5a88c --- /dev/null +++ b/openv0_server/library/lucide/qr-code.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "csandman", + "karsa-mistmere" + ], + "tags": [ + "barcode", + "scan" + ], + "categories": [ + "development", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/quote.json b/openv0_server/library/lucide/quote.json new file mode 100644 index 0000000..8b6b466 --- /dev/null +++ b/openv0_server/library/lucide/quote.json @@ -0,0 +1,12 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Billiam" + ], + "tags": [ + "quotation" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/rabbit.json b/openv0_server/library/lucide/rabbit.json new file mode 100644 index 0000000..e22c113 --- /dev/null +++ b/openv0_server/library/lucide/rabbit.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "animal", + "rodent", + "pet", + "pest", + "bunny", + "hare", + "fast", + "speed", + "hop" + ], + "categories": [ + "animals" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/radar.json b/openv0_server/library/lucide/radar.json new file mode 100644 index 0000000..35943ea --- /dev/null +++ b/openv0_server/library/lucide/radar.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "scan", + "sonar", + "detect", + "find", + "locate" + ], + "categories": [ + "navigation", + "maps", + "security", + "communication" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/radiation.json b/openv0_server/library/lucide/radiation.json new file mode 100644 index 0000000..37227d5 --- /dev/null +++ b/openv0_server/library/lucide/radiation.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "radioactive", + "nuclear", + "fallout", + "waste", + "atomic", + "physics", + "particle", + "element", + "molecule" + ], + "categories": [ + "science" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/radio-receiver.json b/openv0_server/library/lucide/radio-receiver.json new file mode 100644 index 0000000..f649b34 --- /dev/null +++ b/openv0_server/library/lucide/radio-receiver.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "device", + "music", + "connect" + ], + "categories": [ + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/radio-tower.json b/openv0_server/library/lucide/radio-tower.json new file mode 100644 index 0000000..a9bbedf --- /dev/null +++ b/openv0_server/library/lucide/radio-tower.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "signal", + "broadcast", + "connectivity", + "live", + "frequency" + ], + "categories": [ + "devices", + "multimedia", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/radio.json b/openv0_server/library/lucide/radio.json new file mode 100644 index 0000000..34ef5c3 --- /dev/null +++ b/openv0_server/library/lucide/radio.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere", + "danielbayley" + ], + "tags": [ + "signal", + "broadcast", + "connectivity", + "live", + "frequency" + ], + "categories": [ + "devices", + "multimedia", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/rail-symbol.json b/openv0_server/library/lucide/rail-symbol.json new file mode 100644 index 0000000..8ea043b --- /dev/null +++ b/openv0_server/library/lucide/rail-symbol.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "railway", + "train", + "track", + "line" + ], + "categories": [ + "transportation", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/rainbow.json b/openv0_server/library/lucide/rainbow.json new file mode 100644 index 0000000..1b173d8 --- /dev/null +++ b/openv0_server/library/lucide/rainbow.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "colors", + "colours", + "spectrum", + "light", + "prism", + "arc", + "clear", + "sunshine" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/rat.json b/openv0_server/library/lucide/rat.json new file mode 100644 index 0000000..95e3fab --- /dev/null +++ b/openv0_server/library/lucide/rat.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "henri42", + "jguddas", + "karsa-mistmere", + "danielbayley" + ], + "tags": [ + "mouse", + "mice", + "gerbil", + "rodent", + "pet", + "pest", + "plague", + "disease" + ], + "categories": [ + "animals" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/ratio.json b/openv0_server/library/lucide/ratio.json new file mode 100644 index 0000000..90f95c9 --- /dev/null +++ b/openv0_server/library/lucide/ratio.json @@ -0,0 +1,29 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "screens", + "rotate", + "rotation", + "aspect ratio", + "proportions", + "16:9", + "widescreen", + "4:3", + "responsive", + "mobile", + "desktop", + "monitor", + "orientation", + "portrait", + "landscape" + ], + "categories": [ + "connectivity", + "devices", + "design", + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/receipt.json b/openv0_server/library/lucide/receipt.json new file mode 100644 index 0000000..9177773 --- /dev/null +++ b/openv0_server/library/lucide/receipt.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "it-is-not", + "ericfennis" + ], + "tags": [ + "bill", + "voucher", + "slip", + "check", + "counterfoil" + ], + "categories": [ + "money", + "travel" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/rectangle-horizontal.json b/openv0_server/library/lucide/rectangle-horizontal.json new file mode 100644 index 0000000..b33cf0b --- /dev/null +++ b/openv0_server/library/lucide/rectangle-horizontal.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "Reund0", + "danielbayley", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "rectangle", + "aspect ratio", + "16:9", + "horizontal", + "shape" + ], + "categories": [ + "shapes", + "design" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/rectangle-vertical.json b/openv0_server/library/lucide/rectangle-vertical.json new file mode 100644 index 0000000..09e4a58 --- /dev/null +++ b/openv0_server/library/lucide/rectangle-vertical.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "Reund0", + "danielbayley", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "rectangle", + "aspect ratio", + "9:16", + "vertical", + "shape" + ], + "categories": [ + "shapes", + "design" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/recycle.json b/openv0_server/library/lucide/recycle.json new file mode 100644 index 0000000..631133b --- /dev/null +++ b/openv0_server/library/lucide/recycle.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "sustainability", + "salvage", + "arrows" + ], + "categories": [ + "sustainability" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/redo-2.json b/openv0_server/library/lucide/redo-2.json new file mode 100644 index 0000000..1ef4e19 --- /dev/null +++ b/openv0_server/library/lucide/redo-2.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "lscheibel", + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "undo", + "rerun", + "history" + ], + "categories": [ + "text", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/redo-dot.json b/openv0_server/library/lucide/redo-dot.json new file mode 100644 index 0000000..efc5e77 --- /dev/null +++ b/openv0_server/library/lucide/redo-dot.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "redo", + "history", + "step", + "over", + "forward" + ], + "categories": [ + "text", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/redo.json b/openv0_server/library/lucide/redo.json new file mode 100644 index 0000000..ee3a111 --- /dev/null +++ b/openv0_server/library/lucide/redo.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "aelfric", + "ericfennis", + "csandman" + ], + "tags": [ + "undo", + "rerun", + "history" + ], + "categories": [ + "text", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/refresh-ccw-dot.json b/openv0_server/library/lucide/refresh-ccw-dot.json new file mode 100644 index 0000000..249b0f7 --- /dev/null +++ b/openv0_server/library/lucide/refresh-ccw-dot.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "arrows", + "rotate", + "reload", + "synchronise", + "synchronize", + "circular", + "cycle", + "issue", + "code", + "coding", + "version control" + ], + "categories": [ + "arrows", + "development", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/refresh-ccw.json b/openv0_server/library/lucide/refresh-ccw.json new file mode 100644 index 0000000..1ebd7ba --- /dev/null +++ b/openv0_server/library/lucide/refresh-ccw.json @@ -0,0 +1,24 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "danielbayley", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "arrows", + "rotate", + "reload", + "rerun", + "synchronise", + "synchronize", + "circular", + "cycle" + ], + "categories": [ + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/refresh-cw-off.json b/openv0_server/library/lucide/refresh-cw-off.json new file mode 100644 index 0000000..5111ee2 --- /dev/null +++ b/openv0_server/library/lucide/refresh-cw-off.json @@ -0,0 +1,27 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "rotate", + "reload", + "rerun", + "synchronise", + "synchronize", + "arrows", + "circular", + "cycle", + "cancel", + "no", + "stop", + "error", + "disconnect", + "ignore" + ], + "categories": [ + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/refresh-cw.json b/openv0_server/library/lucide/refresh-cw.json new file mode 100644 index 0000000..1695d8b --- /dev/null +++ b/openv0_server/library/lucide/refresh-cw.json @@ -0,0 +1,24 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "danielbayley", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "rotate", + "reload", + "rerun", + "synchronise", + "synchronize", + "arrows", + "circular", + "cycle" + ], + "categories": [ + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/refrigerator.json b/openv0_server/library/lucide/refrigerator.json new file mode 100644 index 0000000..c234834 --- /dev/null +++ b/openv0_server/library/lucide/refrigerator.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "frigerator", + "fridge", + "freezer", + "cooler", + "icebox", + "chiller", + "cold storage" + ], + "categories": [ + "food-beverage", + "home" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/regex.json b/openv0_server/library/lucide/regex.json new file mode 100644 index 0000000..f0f62bc --- /dev/null +++ b/openv0_server/library/lucide/regex.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "search", + "text", + "code" + ], + "categories": [ + "text", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/remove-formatting.json b/openv0_server/library/lucide/remove-formatting.json new file mode 100644 index 0000000..8eae0dc --- /dev/null +++ b/openv0_server/library/lucide/remove-formatting.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "text", + "font", + "typography", + "format", + "x", + "remove", + "delete", + "times", + "clear" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/repeat-1.json b/openv0_server/library/lucide/repeat-1.json new file mode 100644 index 0000000..841cb81 --- /dev/null +++ b/openv0_server/library/lucide/repeat-1.json @@ -0,0 +1,12 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "replay" + ], + "categories": [ + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/repeat-2.json b/openv0_server/library/lucide/repeat-2.json new file mode 100644 index 0000000..d790941 --- /dev/null +++ b/openv0_server/library/lucide/repeat-2.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "arrows", + "retweet", + "repost", + "share", + "repeat", + "loop" + ], + "categories": [ + "arrows", + "social", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/repeat.json b/openv0_server/library/lucide/repeat.json new file mode 100644 index 0000000..79b4d55 --- /dev/null +++ b/openv0_server/library/lucide/repeat.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "loop", + "arrows" + ], + "categories": [ + "arrows", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/replace-all.json b/openv0_server/library/lucide/replace-all.json new file mode 100644 index 0000000..389d86d --- /dev/null +++ b/openv0_server/library/lucide/replace-all.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "search", + "substitute", + "swap", + "change" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/replace.json b/openv0_server/library/lucide/replace.json new file mode 100644 index 0000000..389d86d --- /dev/null +++ b/openv0_server/library/lucide/replace.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "search", + "substitute", + "swap", + "change" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/reply-all.json b/openv0_server/library/lucide/reply-all.json new file mode 100644 index 0000000..c621851 --- /dev/null +++ b/openv0_server/library/lucide/reply-all.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "ericfennis", + "mittalyashu" + ], + "tags": [ + "email" + ], + "categories": [ + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/reply.json b/openv0_server/library/lucide/reply.json new file mode 100644 index 0000000..c621851 --- /dev/null +++ b/openv0_server/library/lucide/reply.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "ericfennis", + "mittalyashu" + ], + "tags": [ + "email" + ], + "categories": [ + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/rewind.json b/openv0_server/library/lucide/rewind.json new file mode 100644 index 0000000..d0ffed2 --- /dev/null +++ b/openv0_server/library/lucide/rewind.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "music" + ], + "categories": [ + "arrows", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/rocket.json b/openv0_server/library/lucide/rocket.json new file mode 100644 index 0000000..d6a6e69 --- /dev/null +++ b/openv0_server/library/lucide/rocket.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "release", + "boost", + "launch", + "space", + "version" + ], + "categories": [ + "gaming", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/rocking-chair.json b/openv0_server/library/lucide/rocking-chair.json new file mode 100644 index 0000000..ca25712 --- /dev/null +++ b/openv0_server/library/lucide/rocking-chair.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "connium", + "ericfennis" + ], + "tags": [ + "chair", + "furniture", + "seat" + ], + "categories": [ + "furniture" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/roller-coaster.json b/openv0_server/library/lucide/roller-coaster.json new file mode 100644 index 0000000..b601bf4 --- /dev/null +++ b/openv0_server/library/lucide/roller-coaster.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "attraction", + "entertainment", + "amusement park", + "theme park", + "funfair" + ], + "categories": [ + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/rotate-3d.json b/openv0_server/library/lucide/rotate-3d.json new file mode 100644 index 0000000..9761efb --- /dev/null +++ b/openv0_server/library/lucide/rotate-3d.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "lscheibel" + ], + "tags": [ + "gizmo", + "transform", + "orientation", + "orbit" + ], + "categories": [ + "design" + ], + "aliases": [ + "rotate-3-d" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/rotate-ccw.json b/openv0_server/library/lucide/rotate-ccw.json new file mode 100644 index 0000000..19b0b05 --- /dev/null +++ b/openv0_server/library/lucide/rotate-ccw.json @@ -0,0 +1,27 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "danielbayley", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "arrow", + "left", + "counter-clockwise", + "restart", + "reload", + "rerun", + "refresh", + "backup", + "undo" + ], + "categories": [ + "arrows", + "design", + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/rotate-cw.json b/openv0_server/library/lucide/rotate-cw.json new file mode 100644 index 0000000..9dfacae --- /dev/null +++ b/openv0_server/library/lucide/rotate-cw.json @@ -0,0 +1,25 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "danielbayley", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "arrow", + "right", + "clockwise", + "refresh", + "reload", + "rerun", + "redo" + ], + "categories": [ + "arrows", + "design", + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/router.json b/openv0_server/library/lucide/router.json new file mode 100644 index 0000000..daaceaf --- /dev/null +++ b/openv0_server/library/lucide/router.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "FrancoMaxime", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "computer", + "server", + "cloud" + ], + "categories": [ + "development", + "devices", + "connectivity", + "home" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/rows.json b/openv0_server/library/lucide/rows.json new file mode 100644 index 0000000..472603b --- /dev/null +++ b/openv0_server/library/lucide/rows.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "split", + "lines", + "queue", + "series", + "list", + "vertical", + "horizontal" + ], + "categories": [ + "layout", + "design", + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/rss.json b/openv0_server/library/lucide/rss.json new file mode 100644 index 0000000..6f0f434 --- /dev/null +++ b/openv0_server/library/lucide/rss.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "feed", + "subscribe" + ], + "categories": [ + "development", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/ruler.json b/openv0_server/library/lucide/ruler.json new file mode 100644 index 0000000..e85895f --- /dev/null +++ b/openv0_server/library/lucide/ruler.json @@ -0,0 +1,35 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "ericfennis", + "csandman", + "karsa-mistmere" + ], + "tags": [ + "measurements", + "centimeters", + "cm", + "millimeters", + "mm", + "metre", + "foot", + "feet", + "inches", + "units", + "size", + "length", + "width", + "height", + "dimensions", + "depth", + "breadth", + "extent", + "stationery" + ], + "categories": [ + "tools", + "design", + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/russian-ruble.json b/openv0_server/library/lucide/russian-ruble.json new file mode 100644 index 0000000..c70558d --- /dev/null +++ b/openv0_server/library/lucide/russian-ruble.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "mittalyashu" + ], + "tags": [ + "currency", + "money", + "payment" + ], + "categories": [ + "currency", + "money" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/sailboat.json b/openv0_server/library/lucide/sailboat.json new file mode 100644 index 0000000..0fe6c27 --- /dev/null +++ b/openv0_server/library/lucide/sailboat.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "ship", + "boat", + "harbor", + "harbour", + "dock" + ], + "categories": [ + "transportation", + "travel" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/salad.json b/openv0_server/library/lucide/salad.json new file mode 100644 index 0000000..63603d8 --- /dev/null +++ b/openv0_server/library/lucide/salad.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "kemie" + ], + "tags": [ + "food", + "vegetarian", + "dish", + "restaurant", + "course", + "meal", + "side", + "vegetables", + "health" + ], + "categories": [ + "food-beverage", + "emoji" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/sandwich.json b/openv0_server/library/lucide/sandwich.json new file mode 100644 index 0000000..aaaef99 --- /dev/null +++ b/openv0_server/library/lucide/sandwich.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "kemie" + ], + "tags": [ + "food", + "snack", + "dish", + "restaurant", + "lunch", + "meal" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/satellite-dish.json b/openv0_server/library/lucide/satellite-dish.json new file mode 100644 index 0000000..9399f80 --- /dev/null +++ b/openv0_server/library/lucide/satellite-dish.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "antenna", + "receiver", + "dish aerial", + "saucer" + ], + "categories": [ + "connectivity", + "devices", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/satellite.json b/openv0_server/library/lucide/satellite.json new file mode 100644 index 0000000..8cec9ce --- /dev/null +++ b/openv0_server/library/lucide/satellite.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "space station", + "orbit", + "transmitter" + ], + "categories": [ + "connectivity", + "science" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/save-all.json b/openv0_server/library/lucide/save-all.json new file mode 100644 index 0000000..7f9bf8e --- /dev/null +++ b/openv0_server/library/lucide/save-all.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "floppy disks", + "copy" + ], + "categories": [ + "text", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/save.json b/openv0_server/library/lucide/save.json new file mode 100644 index 0000000..1f53d01 --- /dev/null +++ b/openv0_server/library/lucide/save.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "floppy disk" + ], + "categories": [ + "text", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/scale-3d.json b/openv0_server/library/lucide/scale-3d.json new file mode 100644 index 0000000..ad7892e --- /dev/null +++ b/openv0_server/library/lucide/scale-3d.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "lscheibel", + "ericfennis", + "jguddas" + ], + "tags": [ + "gizmo", + "transform", + "size" + ], + "categories": [ + "design" + ], + "aliases": [ + "scale-3-d" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/scale.json b/openv0_server/library/lucide/scale.json new file mode 100644 index 0000000..cfdde26 --- /dev/null +++ b/openv0_server/library/lucide/scale.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "balance", + "legal", + "license", + "right", + "rule", + "law" + ], + "categories": [ + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/scaling.json b/openv0_server/library/lucide/scaling.json new file mode 100644 index 0000000..142968c --- /dev/null +++ b/openv0_server/library/lucide/scaling.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "scale", + "resize", + "design" + ], + "categories": [ + "design" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/scan-face.json b/openv0_server/library/lucide/scan-face.json new file mode 100644 index 0000000..b80c474 --- /dev/null +++ b/openv0_server/library/lucide/scan-face.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "face", + "biometric", + "authentication", + "2fa", + "dashed" + ], + "categories": [ + "devices", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/scan-line.json b/openv0_server/library/lucide/scan-line.json new file mode 100644 index 0000000..14079e4 --- /dev/null +++ b/openv0_server/library/lucide/scan-line.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "wojtekmaj", + "ericfennis" + ], + "tags": [ + "qr-code", + "dashed" + ], + "categories": [ + "devices", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/scan.json b/openv0_server/library/lucide/scan.json new file mode 100644 index 0000000..14079e4 --- /dev/null +++ b/openv0_server/library/lucide/scan.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "wojtekmaj", + "ericfennis" + ], + "tags": [ + "qr-code", + "dashed" + ], + "categories": [ + "devices", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/scatter-chart.json b/openv0_server/library/lucide/scatter-chart.json new file mode 100644 index 0000000..84730fc --- /dev/null +++ b/openv0_server/library/lucide/scatter-chart.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "ericfennis" + ], + "tags": [ + "statistics", + "diagram", + "graph" + ], + "categories": [ + "charts" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/school-2.json b/openv0_server/library/lucide/school-2.json new file mode 100644 index 0000000..491e5ab --- /dev/null +++ b/openv0_server/library/lucide/school-2.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "building", + "education", + "childhood", + "university" + ], + "categories": [ + "buildings", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/school.json b/openv0_server/library/lucide/school.json new file mode 100644 index 0000000..491e5ab --- /dev/null +++ b/openv0_server/library/lucide/school.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "building", + "education", + "childhood", + "university" + ], + "categories": [ + "buildings", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/scissors-line-dashed.json b/openv0_server/library/lucide/scissors-line-dashed.json new file mode 100644 index 0000000..44c333a --- /dev/null +++ b/openv0_server/library/lucide/scissors-line-dashed.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "cut here", + "along", + "snip", + "chop", + "stationery", + "crafts", + "instructions", + "diagram" + ], + "categories": [ + "design", + "tools" + ] +} diff --git a/openv0_server/library/lucide/scissors-square-dashed-bottom.json b/openv0_server/library/lucide/scissors-square-dashed-bottom.json new file mode 100644 index 0000000..452c097 --- /dev/null +++ b/openv0_server/library/lucide/scissors-square-dashed-bottom.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "cut", + "snippet", + "chop", + "stationery", + "crafts" + ], + "categories": [ + "text", + "design", + "tools", + "files", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/scissors-square.json b/openv0_server/library/lucide/scissors-square.json new file mode 100644 index 0000000..b68ecb3 --- /dev/null +++ b/openv0_server/library/lucide/scissors-square.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "cut", + "snippet", + "chop", + "stationery", + "crafts", + "toolbar", + "button" + ], + "categories": [ + "text", + "design", + "tools", + "files", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/scissors.json b/openv0_server/library/lucide/scissors.json new file mode 100644 index 0000000..5e5a93e --- /dev/null +++ b/openv0_server/library/lucide/scissors.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "cut", + "snip", + "chop", + "stationery", + "crafts" + ], + "categories": [ + "text", + "design", + "tools" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/screen-share-off.json b/openv0_server/library/lucide/screen-share-off.json new file mode 100644 index 0000000..87c748f --- /dev/null +++ b/openv0_server/library/lucide/screen-share-off.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "csandman", + "ericfennis", + "johnletey" + ], + "tags": [ + "desktop", + "disconnect", + "monitor" + ], + "categories": [ + "connectivity", + "devices", + "communication" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/screen-share.json b/openv0_server/library/lucide/screen-share.json new file mode 100644 index 0000000..23b015d --- /dev/null +++ b/openv0_server/library/lucide/screen-share.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "csandman", + "ericfennis", + "johnletey" + ], + "tags": [ + "host", + "desktop", + "monitor" + ], + "categories": [ + "connectivity", + "devices", + "communication" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/scroll-text.json b/openv0_server/library/lucide/scroll-text.json new file mode 100644 index 0000000..f53537c --- /dev/null +++ b/openv0_server/library/lucide/scroll-text.json @@ -0,0 +1,25 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "paper", + "log", + "scripture", + "document", + "notes", + "parchment", + "list", + "long", + "script", + "story", + "code", + "coding" + ], + "categories": [ + "gaming", + "development", + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/scroll.json b/openv0_server/library/lucide/scroll.json new file mode 100644 index 0000000..0e4f65a --- /dev/null +++ b/openv0_server/library/lucide/scroll.json @@ -0,0 +1,27 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas", + "danielbayley" + ], + "tags": [ + "paper", + "log", + "scripture", + "document", + "notes", + "parchment", + "list", + "long", + "script", + "story", + "code", + "coding" + ], + "categories": [ + "gaming", + "development", + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/search-check.json b/openv0_server/library/lucide/search-check.json new file mode 100644 index 0000000..01bf93e --- /dev/null +++ b/openv0_server/library/lucide/search-check.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "find", + "scan", + "magnifier", + "magnifying glass", + "found", + "correct", + "complete", + "tick" + ], + "categories": [ + "text", + "account", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/search-code.json b/openv0_server/library/lucide/search-code.json new file mode 100644 index 0000000..3330574 --- /dev/null +++ b/openv0_server/library/lucide/search-code.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "find", + "scan", + "magnifier", + "magnifying glass", + "grep", + "chevrons", + "<>" + ], + "categories": [ + "text", + "account", + "social", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/search-slash.json b/openv0_server/library/lucide/search-slash.json new file mode 100644 index 0000000..ce89e73 --- /dev/null +++ b/openv0_server/library/lucide/search-slash.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "find", + "scan", + "magnifier", + "magnifying glass", + "stop", + "clear", + "cancel", + "abort", + "/" + ], + "categories": [ + "text", + "account", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/search-x.json b/openv0_server/library/lucide/search-x.json new file mode 100644 index 0000000..bcb1a21 --- /dev/null +++ b/openv0_server/library/lucide/search-x.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "find", + "scan", + "magnifier", + "magnifying glass", + "stop", + "clear", + "cancel", + "abort" + ], + "categories": [ + "text", + "account", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/search.json b/openv0_server/library/lucide/search.json new file mode 100644 index 0000000..5347296 --- /dev/null +++ b/openv0_server/library/lucide/search.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "find", + "scan", + "magnifier", + "magnifying glass" + ], + "categories": [ + "text", + "account", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/send-horizontal.json b/openv0_server/library/lucide/send-horizontal.json new file mode 100644 index 0000000..3d10eac --- /dev/null +++ b/openv0_server/library/lucide/send-horizontal.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "email", + "message", + "mail", + "paper airplane", + "paper aeroplane", + "submit" + ], + "categories": [ + "mail", + "communication", + "connectivity" + ], + "aliases": [ + "send-horizonal" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/send-to-back.json b/openv0_server/library/lucide/send-to-back.json new file mode 100644 index 0000000..c9f9bb1 --- /dev/null +++ b/openv0_server/library/lucide/send-to-back.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "james-yeoman", + "jguddas" + ], + "tags": [ + "bring", + "send", + "move", + "under", + "back", + "backwards", + "overlap", + "layer", + "order" + ], + "categories": [ + "design", + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/send.json b/openv0_server/library/lucide/send.json new file mode 100644 index 0000000..5849479 --- /dev/null +++ b/openv0_server/library/lucide/send.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "email", + "message", + "mail", + "paper airplane", + "paper aeroplane", + "submit" + ], + "categories": [ + "mail", + "communication", + "connectivity" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/separator-horizontal.json b/openv0_server/library/lucide/separator-horizontal.json new file mode 100644 index 0000000..a957fde --- /dev/null +++ b/openv0_server/library/lucide/separator-horizontal.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "move", + "split" + ], + "categories": [ + "text", + "arrows", + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/separator-vertical.json b/openv0_server/library/lucide/separator-vertical.json new file mode 100644 index 0000000..a957fde --- /dev/null +++ b/openv0_server/library/lucide/separator-vertical.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "move", + "split" + ], + "categories": [ + "text", + "arrows", + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/server-cog.json b/openv0_server/library/lucide/server-cog.json new file mode 100644 index 0000000..c69d75a --- /dev/null +++ b/openv0_server/library/lucide/server-cog.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "cloud", + "storage", + "computing", + "cog", + "gear" + ], + "categories": [ + "development", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/server-crash.json b/openv0_server/library/lucide/server-crash.json new file mode 100644 index 0000000..34c08e8 --- /dev/null +++ b/openv0_server/library/lucide/server-crash.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "cloud", + "storage", + "problem", + "error" + ], + "categories": [ + "development", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/server-off.json b/openv0_server/library/lucide/server-off.json new file mode 100644 index 0000000..9b5022f --- /dev/null +++ b/openv0_server/library/lucide/server-off.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "yukosgiti", + "ericfennis", + "csandman" + ], + "tags": [ + "cloud", + "storage" + ], + "categories": [ + "development", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/server.json b/openv0_server/library/lucide/server.json new file mode 100644 index 0000000..f0ede4f --- /dev/null +++ b/openv0_server/library/lucide/server.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "cloud", + "storage" + ], + "categories": [ + "development", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/settings-2.json b/openv0_server/library/lucide/settings-2.json new file mode 100644 index 0000000..74b50ba --- /dev/null +++ b/openv0_server/library/lucide/settings-2.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "cog", + "edit", + "gear", + "preferences" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/settings.json b/openv0_server/library/lucide/settings.json new file mode 100644 index 0000000..d3b25c1 --- /dev/null +++ b/openv0_server/library/lucide/settings.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "mittalyashu", + "ericfennis" + ], + "tags": [ + "cog", + "edit", + "gear", + "preferences" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/shapes.json b/openv0_server/library/lucide/shapes.json new file mode 100644 index 0000000..cff4b43 --- /dev/null +++ b/openv0_server/library/lucide/shapes.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "triangle", + "equilateral", + "square", + "circle", + "classification", + "different", + "collection", + "toy", + "blocks", + "learning" + ], + "categories": [ + "shapes", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/share-2.json b/openv0_server/library/lucide/share-2.json new file mode 100644 index 0000000..6e1f389 --- /dev/null +++ b/openv0_server/library/lucide/share-2.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "network", + "connections" + ], + "categories": [ + "account", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/share.json b/openv0_server/library/lucide/share.json new file mode 100644 index 0000000..17cfc0a --- /dev/null +++ b/openv0_server/library/lucide/share.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "network", + "connections" + ], + "categories": [ + "account", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/sheet.json b/openv0_server/library/lucide/sheet.json new file mode 100644 index 0000000..8acfcb5 --- /dev/null +++ b/openv0_server/library/lucide/sheet.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "zenoamaro", + "ericfennis", + "csandman", + "mittalyashu" + ], + "tags": [ + "spreadsheets", + "table", + "excel" + ], + "categories": [ + "text", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/shell.json b/openv0_server/library/lucide/shell.json new file mode 100644 index 0000000..48e005c --- /dev/null +++ b/openv0_server/library/lucide/shell.json @@ -0,0 +1,43 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "beach", + "sand", + "holiday", + "sealife", + "fossil", + "ammonite", + "biology", + "ocean", + "terminal", + "command line", + "session", + "bash", + "zsh", + "roll", + "wrap", + "chewing gum", + "bubble gum", + "sweet", + "sugar", + "hosepipe", + "carpet", + "string", + "spiral", + "spinner", + "hypnotise", + "hypnosis" + ], + "categories": [ + "animals", + "development", + "nature", + "science", + "travel", + "food-beverage", + "home" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/shield-alert.json b/openv0_server/library/lucide/shield-alert.json new file mode 100644 index 0000000..8eb18f3 --- /dev/null +++ b/openv0_server/library/lucide/shield-alert.json @@ -0,0 +1,80 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "unshielded", + "cybersecurity", + "insecure", + "unsecured", + "safety", + "unsafe", + "protection", + "unprotected", + "guardian", + "unguarded", + "unarmored", + "unarmoured", + "defenseless", + "defenceless", + "undefended", + "defender", + "blocked", + "stopped", + "intercepted", + "interception", + "saved", + "thwarted", + "threat", + "prevention", + "unprevented", + "antivirus", + "vigilance", + "vigilant", + "detection", + "detected", + "scanned", + "found", + "exploit", + "vulnerability", + "vulnerable", + "weakness", + "infection", + "infected", + "comprimised", + "data leak", + "audited", + "admin", + "verification", + "unverified", + "uncertified", + "warning", + "emergency", + "attention", + "urgent", + "alarm", + "crest", + "bravery", + "strength", + "tough", + "attacked", + "damaged", + "injured", + "hit", + "expired", + "disabled", + "inactive", + "error", + "exclamation mark", + "!" + ], + "categories": [ + "account", + "security", + "development", + "notifications", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/shield-ban.json b/openv0_server/library/lucide/shield-ban.json new file mode 100644 index 0000000..df167ef --- /dev/null +++ b/openv0_server/library/lucide/shield-ban.json @@ -0,0 +1,70 @@ +{ + "$schema": "../icon.schema.json", + "contributors": ["danielbayley"], + "tags": [ + "unshielded", + "cybersecurity", + "insecure", + "unsecured", + "safety", + "unsafe", + "protection", + "unprotected", + "guardian", + "unguarded", + "unarmored", + "unarmoured", + "defenseless", + "defenceless", + "undefended", + "defender", + "blocked", + "stopped", + "intercepted", + "interception", + "saved", + "thwarted", + "threat", + "prevention", + "unprevented", + "antivirus", + "vigilance", + "vigilant", + "detection", + "detected", + "scanned", + "found", + "exploit", + "vulnerability", + "vulnerable", + "weakness", + "infection", + "infected", + "comprimised", + "data leak", + "audited", + "admin", + "verification", + "unverified", + "uncertified", + "cancel", + "error", + "crest", + "bravery", + "attacked", + "damaged", + "injured", + "hit", + "expired", + "eliminated", + "disabled", + "inactive", + "/" + ], + "categories": [ + "account", + "security", + "development", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/shield-check.json b/openv0_server/library/lucide/shield-check.json new file mode 100644 index 0000000..67f21d7 --- /dev/null +++ b/openv0_server/library/lucide/shield-check.json @@ -0,0 +1,68 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "cybersecurity", + "secured", + "safety", + "protection", + "protected", + "guardian", + "guarded", + "armored", + "armoured", + "defense", + "defence", + "defended", + "blocked", + "threat", + "prevention", + "prevented", + "antivirus", + "vigilance", + "vigilant", + "active", + "activated", + "enabled", + "detection", + "scanned", + "found", + "strength", + "strong", + "tough", + "invincible", + "invincibility", + "invulnerable", + "undamaged", + "audited", + "admin", + "verification", + "verified", + "certification", + "certified", + "tested", + "passed", + "qualified", + "cleared", + "cleaned", + "disinfected", + "uninfected", + "task", + "completed", + "todo", + "done", + "ticked", + "checked", + "crest", + "bravery" + ], + "categories": [ + "account", + "security", + "development", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/shield-ellipsis.json b/openv0_server/library/lucide/shield-ellipsis.json new file mode 100644 index 0000000..aa83366 --- /dev/null +++ b/openv0_server/library/lucide/shield-ellipsis.json @@ -0,0 +1,41 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "cybersecurity", + "securing", + "protecting", + "guarding", + "armoring", + "armouring", + "defending", + "blocking", + "preventing", + "antivirus", + "detecting", + "scanning", + "finding", + "auditing", + "admin", + "verifying", + "crest", + "upgrading", + "loader", + "loading", + "throbber", + "progress", + "dots", + "more", + "etc", + "...", + "…" + ], + "categories": [ + "account", + "security", + "development", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/shield-half.json b/openv0_server/library/lucide/shield-half.json new file mode 100644 index 0000000..bdcae80 --- /dev/null +++ b/openv0_server/library/lucide/shield-half.json @@ -0,0 +1,68 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "cybersecurity", + "secure", + "safety", + "protection", + "guardian", + "armored", + "armoured", + "defense", + "defence", + "defender", + "block", + "threat", + "prevention", + "antivirus", + "vigilance", + "vigilant", + "detection", + "scan", + "strength", + "strong", + "tough", + "invincible", + "invincibility", + "invulnerable", + "undamaged", + "audit", + "admin", + "verification", + "crest", + "logo", + "sigil", + "flag", + "team", + "faction", + "fraternity", + "university", + "college", + "academy", + "school", + "education", + "uniform", + "bravery", + "knight", + "foot soldier", + "infantry", + "trooper", + "pawn", + "battle", + "war", + "military", + "ranking", + "army", + "cadet", + "scout" + ], + "categories": [ + "account", + "security", + "development", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/shield-minus.json b/openv0_server/library/lucide/shield-minus.json new file mode 100644 index 0000000..e2be7f7 --- /dev/null +++ b/openv0_server/library/lucide/shield-minus.json @@ -0,0 +1,42 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "unshield", + "cybersecurity", + "unsecure", + "unguard", + "unblock", + "antivirus", + "clean", + "clear", + "disinfect", + "patch", + "fix", + "stop", + "cancel", + "remove", + "relax", + "admin", + "crest", + "bravery", + "weakened", + "damaged", + "hit", + "unarm", + "disable", + "deactivate", + "decommission", + "downgraded", + "minimum", + "-" + ], + "categories": [ + "account", + "security", + "development", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/shield-off.json b/openv0_server/library/lucide/shield-off.json new file mode 100644 index 0000000..7a39a69 --- /dev/null +++ b/openv0_server/library/lucide/shield-off.json @@ -0,0 +1,62 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "unshielded", + "cybersecurity", + "insecure", + "unsecured", + "safety", + "unsafe", + "protection", + "unprotected", + "guardian", + "unguarded", + "unarmored", + "unarmoured", + "defenseless", + "defenceless", + "undefended", + "defender", + "interception", + "threat", + "prevention", + "unprevented", + "antivirus", + "detection", + "undetected", + "exploit", + "vulnerability", + "vulnerable", + "weakness", + "infected", + "infection", + "comprimised", + "data leak", + "unaudited", + "admin", + "verification", + "unverified", + "inactive", + "cancelled", + "error", + "crest", + "bravery", + "damaged", + "injured", + "hit", + "expired", + "eliminated" + ], + "categories": [ + "account", + "security", + "development", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/shield-plus.json b/openv0_server/library/lucide/shield-plus.json new file mode 100644 index 0000000..1a0c47f --- /dev/null +++ b/openv0_server/library/lucide/shield-plus.json @@ -0,0 +1,55 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "cybersecurity", + "secure", + "safety", + "protection", + "guardian", + "armored", + "armoured", + "defense", + "defence", + "defender", + "block", + "threat", + "prevention", + "antivirus", + "vigilance", + "vigilant", + "detection", + "scan", + "strength", + "strong", + "tough", + "invincible", + "invincibility", + "invulnerable", + "undamaged", + "extra", + "added", + "professional", + "enterprise", + "full", + "maximum", + "upgraded", + "ultra", + "activate", + "enable", + "audit", + "admin", + "verification", + "crest", + "medic", + "+" + ], + "categories": [ + "account", + "security", + "development", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/shield-question.json b/openv0_server/library/lucide/shield-question.json new file mode 100644 index 0000000..71de718 --- /dev/null +++ b/openv0_server/library/lucide/shield-question.json @@ -0,0 +1,59 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas" + ], + "tags": [ + "unshielded", + "cybersecurity", + "insecure", + "unsecured", + "safety", + "unsafe", + "protection", + "unprotected", + "guardian", + "unguarded", + "unarmored", + "unarmoured", + "defenseless", + "defenceless", + "undefended", + "defender", + "threat", + "prevention", + "unprevented", + "antivirus", + "vigilance", + "vigilant", + "detection", + "undetected", + "scan", + "find", + "exploit", + "vulnerability", + "vulnerable", + "weakness", + "infection", + "comprimised", + "data leak", + "audit", + "admin", + "verification", + "unverified", + "uncertified", + "uncertain", + "unknown", + "inactive", + "crest", + "question mark", + "?" + ], + "categories": [ + "account", + "security", + "development", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/shield-x.json b/openv0_server/library/lucide/shield-x.json new file mode 100644 index 0000000..a36e81d --- /dev/null +++ b/openv0_server/library/lucide/shield-x.json @@ -0,0 +1,78 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "unshielded", + "cybersecurity", + "insecure", + "unsecured", + "safety", + "unsafe", + "protection", + "unprotected", + "guardian", + "unguarded", + "unarmored", + "unarmoured", + "defenseless", + "defenceless", + "undefended", + "defender", + "blocked", + "stopped", + "intercepted", + "interception", + "saved", + "thwarted", + "threat", + "prevention", + "prevented", + "antivirus", + "vigilance", + "vigilant", + "detection", + "detected", + "scanned", + "found", + "exploit", + "vulnerability", + "vulnerable", + "weakness", + "infection", + "infected", + "comprimised", + "data leak", + "audited", + "admin", + "verification", + "unverified", + "inactive", + "cancel", + "error", + "wrong", + "false", + "crest", + "bravery", + "attacked", + "damaged", + "injured", + "hit", + "dead", + "deceased", + "expired", + "eliminated", + "exterminated" + ], + "categories": [ + "account", + "security", + "development", + "gaming" + ], + "aliases": [ + "shield-close" + ] +} diff --git a/openv0_server/library/lucide/shield.json b/openv0_server/library/lucide/shield.json new file mode 100644 index 0000000..c687264 --- /dev/null +++ b/openv0_server/library/lucide/shield.json @@ -0,0 +1,57 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "cybersecurity", + "secure", + "safety", + "protection", + "guardian", + "armored", + "armoured", + "defense", + "defence", + "defender", + "block", + "threat", + "prevention", + "antivirus", + "vigilance", + "vigilant", + "detection", + "scan", + "find", + "strength", + "strong", + "tough", + "invincible", + "invincibility", + "invulnerable", + "undamaged", + "audit", + "admin", + "verification", + "crest", + "bravery", + "knight", + "foot soldier", + "infantry", + "trooper", + "pawn", + "battle", + "war", + "military", + "army", + "cadet", + "scout" + ], + "categories": [ + "account", + "security", + "development", + "gaming", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/ship-wheel.json b/openv0_server/library/lucide/ship-wheel.json new file mode 100644 index 0000000..f15a359 --- /dev/null +++ b/openv0_server/library/lucide/ship-wheel.json @@ -0,0 +1,27 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "steering", + "rudder", + "boat", + "knots", + "nautical mile", + "maritime", + "sailing", + "yacht", + "cruise", + "ocean liner", + "tanker", + "vessel", + "navy", + "trip" + ], + "categories": [ + "transportation", + "travel", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/ship.json b/openv0_server/library/lucide/ship.json new file mode 100644 index 0000000..d7d93bd --- /dev/null +++ b/openv0_server/library/lucide/ship.json @@ -0,0 +1,25 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "boat", + "knots", + "nautical mile", + "maritime", + "sailing", + "yacht", + "cruise", + "ocean liner", + "tanker", + "vessel", + "navy", + "trip" + ], + "categories": [ + "transportation", + "travel", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/shirt.json b/openv0_server/library/lucide/shirt.json new file mode 100644 index 0000000..7d190e1 --- /dev/null +++ b/openv0_server/library/lucide/shirt.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "lscheibel", + "csandman", + "ericfennis" + ], + "tags": [ + "t-shirt", + "shopping", + "store", + "clothing", + "clothes" + ], + "categories": [ + "shopping" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/shopping-bag.json b/openv0_server/library/lucide/shopping-bag.json new file mode 100644 index 0000000..b390bbe --- /dev/null +++ b/openv0_server/library/lucide/shopping-bag.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "ecommerce", + "cart", + "purchase", + "store" + ], + "categories": [ + "shopping" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/shopping-basket.json b/openv0_server/library/lucide/shopping-basket.json new file mode 100644 index 0000000..268753f --- /dev/null +++ b/openv0_server/library/lucide/shopping-basket.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "cart", + "e-commerce", + "store", + "purchase", + "products", + "items", + "ingredients" + ], + "categories": [ + "shopping" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/shopping-cart.json b/openv0_server/library/lucide/shopping-cart.json new file mode 100644 index 0000000..6d8927c --- /dev/null +++ b/openv0_server/library/lucide/shopping-cart.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "trolley", + "cart", + "basket", + "e-commerce", + "store", + "purchase", + "products", + "items", + "ingredients" + ], + "categories": [ + "shopping" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/shovel.json b/openv0_server/library/lucide/shovel.json new file mode 100644 index 0000000..6753a33 --- /dev/null +++ b/openv0_server/library/lucide/shovel.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "ericfennis" + ], + "tags": [ + "dig", + "spade", + "treasure" + ], + "categories": [ + "nature", + "tools", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/shower-head.json b/openv0_server/library/lucide/shower-head.json new file mode 100644 index 0000000..edde028 --- /dev/null +++ b/openv0_server/library/lucide/shower-head.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "shower", + "bath", + "bathroom", + "amenities", + "services" + ], + "categories": [ + "home", + "travel" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/shrink.json b/openv0_server/library/lucide/shrink.json new file mode 100644 index 0000000..db2b3ff --- /dev/null +++ b/openv0_server/library/lucide/shrink.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "scale", + "fullscreen" + ], + "categories": [ + "layout", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/shrub.json b/openv0_server/library/lucide/shrub.json new file mode 100644 index 0000000..b7f8d4b --- /dev/null +++ b/openv0_server/library/lucide/shrub.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "forest", + "undergrowth", + "park", + "nature" + ], + "categories": [ + "nature" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/shuffle.json b/openv0_server/library/lucide/shuffle.json new file mode 100644 index 0000000..db4ea5e --- /dev/null +++ b/openv0_server/library/lucide/shuffle.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis", + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "music", + "random", + "reorder" + ], + "categories": [ + "multimedia", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/sigma-square.json b/openv0_server/library/lucide/sigma-square.json new file mode 100644 index 0000000..c17ff99 --- /dev/null +++ b/openv0_server/library/lucide/sigma-square.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "sum", + "calculate", + "formula", + "maths", + "enumeration", + "enumerate" + ], + "categories": [ + "text", + "maths" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/sigma.json b/openv0_server/library/lucide/sigma.json new file mode 100644 index 0000000..ce03f2a --- /dev/null +++ b/openv0_server/library/lucide/sigma.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "johnletey", + "ericfennis" + ], + "tags": [ + "sum", + "calculate", + "formula", + "maths", + "enumeration", + "enumerate" + ], + "categories": [ + "text", + "maths" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/signal-high.json b/openv0_server/library/lucide/signal-high.json new file mode 100644 index 0000000..980f6f7 --- /dev/null +++ b/openv0_server/library/lucide/signal-high.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "connection", + "wireless", + "gsm", + "phone", + "2g", + "3g", + "4g", + "5g" + ], + "categories": [ + "connectivity" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/signal-low.json b/openv0_server/library/lucide/signal-low.json new file mode 100644 index 0000000..9690184 --- /dev/null +++ b/openv0_server/library/lucide/signal-low.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "connection", + "wireless", + "gsm", + "phone", + "2g", + "3g", + "4g", + "5g" + ], + "categories": [ + "connectivity" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/signal-medium.json b/openv0_server/library/lucide/signal-medium.json new file mode 100644 index 0000000..980f6f7 --- /dev/null +++ b/openv0_server/library/lucide/signal-medium.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "connection", + "wireless", + "gsm", + "phone", + "2g", + "3g", + "4g", + "5g" + ], + "categories": [ + "connectivity" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/signal-zero.json b/openv0_server/library/lucide/signal-zero.json new file mode 100644 index 0000000..09e9d18 --- /dev/null +++ b/openv0_server/library/lucide/signal-zero.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "danielbayley", + "karsa-mistmere", + "azdle" + ], + "tags": [ + "connection", + "wireless", + "gsm", + "phone", + "2g", + "3g", + "4g", + "5g", + "lost" + ], + "categories": [ + "connectivity" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/signal.json b/openv0_server/library/lucide/signal.json new file mode 100644 index 0000000..980f6f7 --- /dev/null +++ b/openv0_server/library/lucide/signal.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "connection", + "wireless", + "gsm", + "phone", + "2g", + "3g", + "4g", + "5g" + ], + "categories": [ + "connectivity" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/siren.json b/openv0_server/library/lucide/siren.json new file mode 100644 index 0000000..e3037dd --- /dev/null +++ b/openv0_server/library/lucide/siren.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "police", + "ambulance", + "emergency", + "security", + "alert", + "alarm", + "light" + ], + "categories": [ + "medical" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/skip-back.json b/openv0_server/library/lucide/skip-back.json new file mode 100644 index 0000000..6889053 --- /dev/null +++ b/openv0_server/library/lucide/skip-back.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "arrow", + "previous", + "music" + ], + "categories": [ + "multimedia", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/skip-forward.json b/openv0_server/library/lucide/skip-forward.json new file mode 100644 index 0000000..a2957c8 --- /dev/null +++ b/openv0_server/library/lucide/skip-forward.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "arrow", + "skip", + "next", + "music" + ], + "categories": [ + "multimedia", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/skull.json b/openv0_server/library/lucide/skull.json new file mode 100644 index 0000000..173cf55 --- /dev/null +++ b/openv0_server/library/lucide/skull.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "death", + "danger", + "bone" + ], + "categories": [ + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/slack.json b/openv0_server/library/lucide/slack.json new file mode 100644 index 0000000..d3aa106 --- /dev/null +++ b/openv0_server/library/lucide/slack.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ashygee", + "wojtekmaj", + "mittalyashu", + "ericfennis" + ], + "tags": [ + "logo" + ], + "categories": [ + "account", + "social", + "communication", + "brands", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/slash.json b/openv0_server/library/lucide/slash.json new file mode 100644 index 0000000..80038b1 --- /dev/null +++ b/openv0_server/library/lucide/slash.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "divide", + "division", + "or", + "/" + ], + "categories": [ + "development", + "maths" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/slice.json b/openv0_server/library/lucide/slice.json new file mode 100644 index 0000000..7699253 --- /dev/null +++ b/openv0_server/library/lucide/slice.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "danielbayley" + ], + "tags": [ + "cutter", + "scalpel", + "knife" + ], + "categories": [ + "design" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/sliders-horizontal.json b/openv0_server/library/lucide/sliders-horizontal.json new file mode 100644 index 0000000..c71c30a --- /dev/null +++ b/openv0_server/library/lucide/sliders-horizontal.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "settings", + "filters", + "controls" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/sliders.json b/openv0_server/library/lucide/sliders.json new file mode 100644 index 0000000..3497f57 --- /dev/null +++ b/openv0_server/library/lucide/sliders.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "settings", + "controls" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/smartphone-charging.json b/openv0_server/library/lucide/smartphone-charging.json new file mode 100644 index 0000000..f1f3c4e --- /dev/null +++ b/openv0_server/library/lucide/smartphone-charging.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "phone", + "cellphone", + "device", + "power", + "screen" + ], + "categories": [ + "connectivity", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/smartphone-nfc.json b/openv0_server/library/lucide/smartphone-nfc.json new file mode 100644 index 0000000..8ad86ce --- /dev/null +++ b/openv0_server/library/lucide/smartphone-nfc.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas", + "ericfennis" + ], + "tags": [ + "contactless", + "payment", + "near-field communication", + "screen" + ], + "categories": [ + "communication", + "money", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/smartphone.json b/openv0_server/library/lucide/smartphone.json new file mode 100644 index 0000000..f110e2a --- /dev/null +++ b/openv0_server/library/lucide/smartphone.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "mittalyashu", + "ericfennis" + ], + "tags": [ + "phone", + "cellphone", + "device", + "screen" + ], + "categories": [ + "connectivity", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/smile-plus.json b/openv0_server/library/lucide/smile-plus.json new file mode 100644 index 0000000..026cca5 --- /dev/null +++ b/openv0_server/library/lucide/smile-plus.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "emoji", + "face", + "happy", + "good", + "emotion", + "react", + "reaction", + "add" + ], + "categories": [ + "emoji", + "social", + "notifications", + "communication" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/smile.json b/openv0_server/library/lucide/smile.json new file mode 100644 index 0000000..d3f039b --- /dev/null +++ b/openv0_server/library/lucide/smile.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "mittalyashu", + "ericfennis" + ], + "tags": [ + "emoji", + "face", + "happy", + "good", + "emotion" + ], + "categories": [ + "emoji", + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/snail.json b/openv0_server/library/lucide/snail.json new file mode 100644 index 0000000..4e86752 --- /dev/null +++ b/openv0_server/library/lucide/snail.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "animal", + "insect", + "slow", + "speed", + "delicacy", + "spiral" + ], + "categories": [ + "animals", + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/snowflake.json b/openv0_server/library/lucide/snowflake.json new file mode 100644 index 0000000..965344d --- /dev/null +++ b/openv0_server/library/lucide/snowflake.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "lscheibel", + "ericfennis" + ], + "tags": [ + "cold", + "weather", + "freeze", + "snow", + "winter" + ], + "categories": [ + "weather", + "seasons" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/sofa.json b/openv0_server/library/lucide/sofa.json new file mode 100644 index 0000000..e569861 --- /dev/null +++ b/openv0_server/library/lucide/sofa.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "armchair", + "furniture", + "leisure", + "lounge", + "loveseat", + "couch" + ], + "categories": [ + "furniture" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/soup.json b/openv0_server/library/lucide/soup.json new file mode 100644 index 0000000..a38b714 --- /dev/null +++ b/openv0_server/library/lucide/soup.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "kemie" + ], + "tags": [ + "food", + "dish", + "restaurant", + "course", + "meal", + "bowl", + "starter" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/space.json b/openv0_server/library/lucide/space.json new file mode 100644 index 0000000..88ce2db --- /dev/null +++ b/openv0_server/library/lucide/space.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "text", + "selection", + "letters", + "characters", + "font", + "typography" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/spade.json b/openv0_server/library/lucide/spade.json new file mode 100644 index 0000000..43d20b7 --- /dev/null +++ b/openv0_server/library/lucide/spade.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "shape", + "suit", + "playing", + "cards" + ], + "categories": [ + "shapes", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/sparkle.json b/openv0_server/library/lucide/sparkle.json new file mode 100644 index 0000000..037c80f --- /dev/null +++ b/openv0_server/library/lucide/sparkle.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Shiva953", + "karsa-mistmere" + ], + "tags": [ + "star", + "effect", + "filter", + "night", + "magic", + "shiny", + "glitter", + "twinkle", + "celebration" + ], + "categories": [ + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/sparkles.json b/openv0_server/library/lucide/sparkles.json new file mode 100644 index 0000000..697c182 --- /dev/null +++ b/openv0_server/library/lucide/sparkles.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "aliases": ["stars"], + "tags": [ + "stars", + "effect", + "filter", + "night", + "magic" + ], + "categories": [ + "shapes", + "cursors", + "multimedia", + "gaming", + "weather" + ] +} diff --git a/openv0_server/library/lucide/speaker.json b/openv0_server/library/lucide/speaker.json new file mode 100644 index 0000000..d34c809 --- /dev/null +++ b/openv0_server/library/lucide/speaker.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "audio", + "music" + ], + "categories": [ + "multimedia", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/speech.json b/openv0_server/library/lucide/speech.json new file mode 100644 index 0000000..a8e1505 --- /dev/null +++ b/openv0_server/library/lucide/speech.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "doerge", + "airone01", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "disability", + "disabled", + "dda", + "human", + "accessibility", + "people", + "sound" + ], + "categories": [ + "accessibility", + "communication" + ] +} diff --git a/openv0_server/library/lucide/spell-check-2.json b/openv0_server/library/lucide/spell-check-2.json new file mode 100644 index 0000000..340597f --- /dev/null +++ b/openv0_server/library/lucide/spell-check-2.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas" + ], + "tags": [ + "spelling", + "error", + "mistake", + "oversight", + "typo", + "correction", + "code", + "linter", + "a" + ], + "categories": [ + "text", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/spell-check.json b/openv0_server/library/lucide/spell-check.json new file mode 100644 index 0000000..340597f --- /dev/null +++ b/openv0_server/library/lucide/spell-check.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas" + ], + "tags": [ + "spelling", + "error", + "mistake", + "oversight", + "typo", + "correction", + "code", + "linter", + "a" + ], + "categories": [ + "text", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/spline.json b/openv0_server/library/lucide/spline.json new file mode 100644 index 0000000..cde3932 --- /dev/null +++ b/openv0_server/library/lucide/spline.json @@ -0,0 +1,11 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "jguddas" + ], + "tags": [], + "categories": [ + "design" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/split-square-horizontal.json b/openv0_server/library/lucide/split-square-horizontal.json new file mode 100644 index 0000000..414814a --- /dev/null +++ b/openv0_server/library/lucide/split-square-horizontal.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Patchethium", + "ericfennis" + ], + "tags": [ + "split", + "divide" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/split-square-vertical.json b/openv0_server/library/lucide/split-square-vertical.json new file mode 100644 index 0000000..414814a --- /dev/null +++ b/openv0_server/library/lucide/split-square-vertical.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Patchethium", + "ericfennis" + ], + "tags": [ + "split", + "divide" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/split.json b/openv0_server/library/lucide/split.json new file mode 100644 index 0000000..b760e43 --- /dev/null +++ b/openv0_server/library/lucide/split.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "break", + "disband", + "divide", + "separate", + "branch", + "disunite" + ], + "categories": [ + "development", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/spray-can.json b/openv0_server/library/lucide/spray-can.json new file mode 100644 index 0000000..fea713f --- /dev/null +++ b/openv0_server/library/lucide/spray-can.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "paint", + "color", + "graffiti", + "decoration", + "aerosol", + "deodorant", + "shaving foam", + "air freshener" + ], + "categories": [ + "design", + "tools" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/sprout.json b/openv0_server/library/lucide/sprout.json new file mode 100644 index 0000000..a1024ce --- /dev/null +++ b/openv0_server/library/lucide/sprout.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "mittalyashu" + ], + "tags": [ + "leaf", + "nature", + "plant" + ], + "categories": [ + "nature", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/square-asterisk.json b/openv0_server/library/lucide/square-asterisk.json new file mode 100644 index 0000000..3219525 --- /dev/null +++ b/openv0_server/library/lucide/square-asterisk.json @@ -0,0 +1,24 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "password", + "secret", + "access", + "key", + "multiply", + "multiplication", + "glob pattern", + "wildcard", + "*" + ], + "categories": [ + "text", + "security", + "account", + "maths", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/square-code.json b/openv0_server/library/lucide/square-code.json new file mode 100644 index 0000000..f2dfe22 --- /dev/null +++ b/openv0_server/library/lucide/square-code.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "gist", + "source", + "programming", + "html", + "xml", + "coding" + ], + "categories": [ + "text", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/square-dashed-bottom-code.json b/openv0_server/library/lucide/square-dashed-bottom-code.json new file mode 100644 index 0000000..f1c236a --- /dev/null +++ b/openv0_server/library/lucide/square-dashed-bottom-code.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "rectangle", + "aspect ratio", + "1:1", + "shape", + "snippet", + "code", + "coding" + ], + "categories": [ + "shapes", + "development", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/square-dashed-bottom.json b/openv0_server/library/lucide/square-dashed-bottom.json new file mode 100644 index 0000000..f1c236a --- /dev/null +++ b/openv0_server/library/lucide/square-dashed-bottom.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "rectangle", + "aspect ratio", + "1:1", + "shape", + "snippet", + "code", + "coding" + ], + "categories": [ + "shapes", + "development", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/square-dot.json b/openv0_server/library/lucide/square-dot.json new file mode 100644 index 0000000..ec49107 --- /dev/null +++ b/openv0_server/library/lucide/square-dot.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "git", + "diff", + "modified", + "." + ], + "categories": [ + "shapes", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/square-equal.json b/openv0_server/library/lucide/square-equal.json new file mode 100644 index 0000000..4605724 --- /dev/null +++ b/openv0_server/library/lucide/square-equal.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "calculate", + "=" + ], + "categories": [ + "maths", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/square-slash.json b/openv0_server/library/lucide/square-slash.json new file mode 100644 index 0000000..3a72853 --- /dev/null +++ b/openv0_server/library/lucide/square-slash.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "git", + "diff", + "ignored", + "divide", + "division", + "shortcut", + "or", + "/" + ], + "categories": [ + "shapes", + "development", + "maths" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/square-stack.json b/openv0_server/library/lucide/square-stack.json new file mode 100644 index 0000000..fe8a15c --- /dev/null +++ b/openv0_server/library/lucide/square-stack.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "versions", + "clone", + "copy", + "duplicate", + "multiple", + "revisions", + "version control", + "backup", + "history" + ], + "categories": [ + "text", + "files", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/square.json b/openv0_server/library/lucide/square.json new file mode 100644 index 0000000..3042811 --- /dev/null +++ b/openv0_server/library/lucide/square.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "rectangle", + "aspect ratio", + "1:1", + "shape" + ], + "categories": [ + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/squirrel.json b/openv0_server/library/lucide/squirrel.json new file mode 100644 index 0000000..219aed3 --- /dev/null +++ b/openv0_server/library/lucide/squirrel.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "animal", + "rodent", + "pet", + "pest", + "nuts", + "retrieve", + "updates", + "storage", + "stash" + ], + "categories": [ + "animals" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/stamp.json b/openv0_server/library/lucide/stamp.json new file mode 100644 index 0000000..b0aa423 --- /dev/null +++ b/openv0_server/library/lucide/stamp.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "mark", + "print", + "clone", + "loyalty", + "library" + ], + "categories": [ + "design", + "cursors", + "tools", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/star-half.json b/openv0_server/library/lucide/star-half.json new file mode 100644 index 0000000..51b57fe --- /dev/null +++ b/openv0_server/library/lucide/star-half.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "bookmark", + "favorite", + "like", + "review", + "rating" + ], + "categories": [ + "social", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/star-off.json b/openv0_server/library/lucide/star-off.json new file mode 100644 index 0000000..dd4bcb6 --- /dev/null +++ b/openv0_server/library/lucide/star-off.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "dislike", + "unlike", + "remove", + "unrate" + ], + "categories": [ + "multimedia", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/star.json b/openv0_server/library/lucide/star.json new file mode 100644 index 0000000..18e9a01 --- /dev/null +++ b/openv0_server/library/lucide/star.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "bookmark", + "favorite", + "like", + "review", + "rating" + ], + "categories": [ + "account", + "social", + "shapes", + "multimedia", + "weather", + "emoji", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/step-back.json b/openv0_server/library/lucide/step-back.json new file mode 100644 index 0000000..39ae287 --- /dev/null +++ b/openv0_server/library/lucide/step-back.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "arrow", + "previous", + "music", + "left", + "reverse" + ], + "categories": [ + "multimedia", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/step-forward.json b/openv0_server/library/lucide/step-forward.json new file mode 100644 index 0000000..9d3c822 --- /dev/null +++ b/openv0_server/library/lucide/step-forward.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "arrow", + "next", + "music", + "right", + "continue" + ], + "categories": [ + "multimedia", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/stethoscope.json b/openv0_server/library/lucide/stethoscope.json new file mode 100644 index 0000000..8bca7a1 --- /dev/null +++ b/openv0_server/library/lucide/stethoscope.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "phonendoscope", + "medical", + "heart", + "lungs", + "sound" + ], + "categories": [ + "science", + "medical" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/sticker.json b/openv0_server/library/lucide/sticker.json new file mode 100644 index 0000000..d57e027 --- /dev/null +++ b/openv0_server/library/lucide/sticker.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "reaction", + "emotion", + "smile", + "happy", + "feedback" + ], + "categories": [ + "communication", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/sticky-note.json b/openv0_server/library/lucide/sticky-note.json new file mode 100644 index 0000000..10cddd8 --- /dev/null +++ b/openv0_server/library/lucide/sticky-note.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "note", + "comment", + "reaction", + "memo" + ], + "categories": [ + "communication", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/stop-circle.json b/openv0_server/library/lucide/stop-circle.json new file mode 100644 index 0000000..7503505 --- /dev/null +++ b/openv0_server/library/lucide/stop-circle.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "media", + "music" + ], + "categories": [ + "multimedia", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/store.json b/openv0_server/library/lucide/store.json new file mode 100644 index 0000000..2af6d4f --- /dev/null +++ b/openv0_server/library/lucide/store.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "shop", + "supermarket", + "stand", + "boutique", + "building" + ], + "categories": [ + "buildings", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/stretch-horizontal.json b/openv0_server/library/lucide/stretch-horizontal.json new file mode 100644 index 0000000..3b52697 --- /dev/null +++ b/openv0_server/library/lucide/stretch-horizontal.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "items", + "flex", + "justify", + "distribute" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/stretch-vertical.json b/openv0_server/library/lucide/stretch-vertical.json new file mode 100644 index 0000000..3b52697 --- /dev/null +++ b/openv0_server/library/lucide/stretch-vertical.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "items", + "flex", + "justify", + "distribute" + ], + "categories": [ + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/strikethrough.json b/openv0_server/library/lucide/strikethrough.json new file mode 100644 index 0000000..4da2c94 --- /dev/null +++ b/openv0_server/library/lucide/strikethrough.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "johnletey", + "csandman" + ], + "tags": [ + "cross out", + "delete", + "remove", + "format" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/subscript.json b/openv0_server/library/lucide/subscript.json new file mode 100644 index 0000000..7de6135 --- /dev/null +++ b/openv0_server/library/lucide/subscript.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "nabanita-sarkar", + "ericfennis", + "mittalyashu" + ], + "tags": [ + "text" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/subtitles.json b/openv0_server/library/lucide/subtitles.json new file mode 100644 index 0000000..41033f7 --- /dev/null +++ b/openv0_server/library/lucide/subtitles.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "it-is-not", + "karsa-mistmere" + ], + "tags": [ + "captions", + "closed captions", + "accessibility" + ], + "categories": [] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/sun-dim.json b/openv0_server/library/lucide/sun-dim.json new file mode 100644 index 0000000..1ec6d35 --- /dev/null +++ b/openv0_server/library/lucide/sun-dim.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "bduffany", + "karsa-mistmere" + ], + "tags": [ + "brightness", + "dim", + "low", + "brightness low" + ], + "categories": [ + "accessibility", + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/sun-medium.json b/openv0_server/library/lucide/sun-medium.json new file mode 100644 index 0000000..179fb26 --- /dev/null +++ b/openv0_server/library/lucide/sun-medium.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "karsa-mistmere" + ], + "tags": [ + "brightness", + "medium" + ], + "categories": [ + "accessibility", + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/sun-moon.json b/openv0_server/library/lucide/sun-moon.json new file mode 100644 index 0000000..199b952 --- /dev/null +++ b/openv0_server/library/lucide/sun-moon.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "itsjavi", + "mittalyashu", + "karsa-mistmere" + ], + "tags": [ + "night", + "dark", + "light", + "moon", + "sun", + "brightness", + "theme", + "auto theme", + "system theme", + "appearance" + ], + "categories": [ + "accessibility" + ] +} diff --git a/openv0_server/library/lucide/sun-snow.json b/openv0_server/library/lucide/sun-snow.json new file mode 100644 index 0000000..9a2c44c --- /dev/null +++ b/openv0_server/library/lucide/sun-snow.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "weather", + "air conditioning", + "temperature", + "hot", + "cold", + "seasons" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/sun.json b/openv0_server/library/lucide/sun.json new file mode 100644 index 0000000..b761a49 --- /dev/null +++ b/openv0_server/library/lucide/sun.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "brightness", + "weather", + "light", + "summer" + ], + "categories": [ + "accessibility", + "weather", + "seasons" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/sunrise.json b/openv0_server/library/lucide/sunrise.json new file mode 100644 index 0000000..1573d6b --- /dev/null +++ b/openv0_server/library/lucide/sunrise.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "weather", + "time", + "morning", + "day" + ], + "categories": [ + "arrows", + "weather", + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/sunset.json b/openv0_server/library/lucide/sunset.json new file mode 100644 index 0000000..09b6941 --- /dev/null +++ b/openv0_server/library/lucide/sunset.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "weather", + "time", + "evening", + "night" + ], + "categories": [ + "arrows", + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/superscript.json b/openv0_server/library/lucide/superscript.json new file mode 100644 index 0000000..9511af6 --- /dev/null +++ b/openv0_server/library/lucide/superscript.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "nabanita-sarkar", + "ericfennis" + ], + "tags": [ + "text", + "exponent" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/swiss-franc.json b/openv0_server/library/lucide/swiss-franc.json new file mode 100644 index 0000000..c70558d --- /dev/null +++ b/openv0_server/library/lucide/swiss-franc.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "mittalyashu" + ], + "tags": [ + "currency", + "money", + "payment" + ], + "categories": [ + "currency", + "money" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/switch-camera.json b/openv0_server/library/lucide/switch-camera.json new file mode 100644 index 0000000..b6fd341 --- /dev/null +++ b/openv0_server/library/lucide/switch-camera.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "lscheibel", + "csandman", + "ericfennis" + ], + "tags": [ + "photo", + "selfie", + "front", + "back" + ], + "categories": [ + "communication", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/sword.json b/openv0_server/library/lucide/sword.json new file mode 100644 index 0000000..920c315 --- /dev/null +++ b/openv0_server/library/lucide/sword.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas", + "ericfennis" + ], + "tags": [ + "battle", + "challenge", + "game", + "war", + "weapon" + ], + "categories": [ + "gaming", + "tools" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/swords.json b/openv0_server/library/lucide/swords.json new file mode 100644 index 0000000..80aa76a --- /dev/null +++ b/openv0_server/library/lucide/swords.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "battle", + "challenge", + "game", + "war", + "weapon" + ], + "categories": [ + "gaming", + "tools" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/syringe.json b/openv0_server/library/lucide/syringe.json new file mode 100644 index 0000000..5e2d3ed --- /dev/null +++ b/openv0_server/library/lucide/syringe.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "medicine", + "medical", + "needle", + "pump", + "plunger", + "nozzle", + "blood" + ], + "categories": [ + "science", + "medical" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/table-2.json b/openv0_server/library/lucide/table-2.json new file mode 100644 index 0000000..ea10fa8 --- /dev/null +++ b/openv0_server/library/lucide/table-2.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "abejenaru", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "spreadsheet", + "grid" + ], + "categories": [ + "text", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/table-properties.json b/openv0_server/library/lucide/table-properties.json new file mode 100644 index 0000000..380457f --- /dev/null +++ b/openv0_server/library/lucide/table-properties.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "property list", + "plist", + "spreadsheet", + "grid", + "dictionary", + "object", + "hash" + ], + "categories": [ + "text", + "development", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/table.json b/openv0_server/library/lucide/table.json new file mode 100644 index 0000000..03c667c --- /dev/null +++ b/openv0_server/library/lucide/table.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "zenoamaro", + "ericfennis", + "csandman", + "mittalyashu" + ], + "tags": [ + "spreadsheet", + "grid" + ], + "categories": [ + "text", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/tablet-smartphone.json b/openv0_server/library/lucide/tablet-smartphone.json new file mode 100644 index 0000000..bbf6965 --- /dev/null +++ b/openv0_server/library/lucide/tablet-smartphone.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "responsive", + "screens", + "browser", + "testing", + "mobile" + ], + "categories": [ + "devices", + "design", + "development", + "tools" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/tablet.json b/openv0_server/library/lucide/tablet.json new file mode 100644 index 0000000..8692f39 --- /dev/null +++ b/openv0_server/library/lucide/tablet.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "device" + ], + "categories": [ + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/tablets.json b/openv0_server/library/lucide/tablets.json new file mode 100644 index 0000000..7f8e602 --- /dev/null +++ b/openv0_server/library/lucide/tablets.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "it-is-not", + "ericfennis" + ], + "tags": [ + "medicine", + "medication", + "drug", + "prescription", + "pills", + "pharmacy" + ], + "categories": [ + "medical" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/tag.json b/openv0_server/library/lucide/tag.json new file mode 100644 index 0000000..a7fe48e --- /dev/null +++ b/openv0_server/library/lucide/tag.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "aaofyi", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "label", + "badge", + "ticket", + "mark" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/tags.json b/openv0_server/library/lucide/tags.json new file mode 100644 index 0000000..078dc45 --- /dev/null +++ b/openv0_server/library/lucide/tags.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "labels", + "badges", + "tickets", + "marks", + "copy", + "multiple" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/tally-1.json b/openv0_server/library/lucide/tally-1.json new file mode 100644 index 0000000..f185b51 --- /dev/null +++ b/openv0_server/library/lucide/tally-1.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "count", + "score", + "enumerate", + "days", + "one", + "1", + "first", + "bar", + "prison", + "cell", + "sentence" + ], + "categories": [ + "maths", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/tally-2.json b/openv0_server/library/lucide/tally-2.json new file mode 100644 index 0000000..8c27783 --- /dev/null +++ b/openv0_server/library/lucide/tally-2.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "count", + "score", + "enumerate", + "days", + "two", + "2", + "second", + "double", + "bars", + "prison", + "cell", + "sentence" + ], + "categories": [ + "maths", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/tally-3.json b/openv0_server/library/lucide/tally-3.json new file mode 100644 index 0000000..f2a8879 --- /dev/null +++ b/openv0_server/library/lucide/tally-3.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "count", + "score", + "enumerate", + "days", + "three", + "3", + "third", + "triple", + "bars", + "prison", + "cell", + "sentence" + ], + "categories": [ + "maths", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/tally-4.json b/openv0_server/library/lucide/tally-4.json new file mode 100644 index 0000000..5975b9b --- /dev/null +++ b/openv0_server/library/lucide/tally-4.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "count", + "score", + "enumerate", + "days", + "4", + "fourth", + "quadruple", + "bars", + "prison", + "cell", + "sentence" + ], + "categories": [ + "maths", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/tally-5.json b/openv0_server/library/lucide/tally-5.json new file mode 100644 index 0000000..a6c0c82 --- /dev/null +++ b/openv0_server/library/lucide/tally-5.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "count", + "score", + "enumerate", + "days", + "five", + "5", + "fifth", + "bars", + "prison", + "cell", + "sentence", + "slash", + "/" + ], + "categories": [ + "maths", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/target.json b/openv0_server/library/lucide/target.json new file mode 100644 index 0000000..bced49e --- /dev/null +++ b/openv0_server/library/lucide/target.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "logo", + "bullseye", + "deadline", + "projects", + "overview", + "work", + "productivity" + ], + "categories": [ + "brands", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/tent.json b/openv0_server/library/lucide/tent.json new file mode 100644 index 0000000..6220231 --- /dev/null +++ b/openv0_server/library/lucide/tent.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "MoltenCoffee", + "ericfennis" + ], + "tags": [ + "campsite", + "wigwam" + ], + "categories": [ + "nature" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/terminal-square.json b/openv0_server/library/lucide/terminal-square.json new file mode 100644 index 0000000..59d39d4 --- /dev/null +++ b/openv0_server/library/lucide/terminal-square.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "code", + "command line", + "prompt", + "shell" + ], + "categories": [ + "development", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/terminal.json b/openv0_server/library/lucide/terminal.json new file mode 100644 index 0000000..b5a4433 --- /dev/null +++ b/openv0_server/library/lucide/terminal.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "code", + "command line", + "prompt", + "shell" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/test-tube-2.json b/openv0_server/library/lucide/test-tube-2.json new file mode 100644 index 0000000..8977299 --- /dev/null +++ b/openv0_server/library/lucide/test-tube-2.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "tube", + "vial", + "phial", + "flask", + "ampoule", + "ampule", + "lab", + "chemistry", + "experiment", + "test" + ], + "categories": [ + "science" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/test-tube.json b/openv0_server/library/lucide/test-tube.json new file mode 100644 index 0000000..8977299 --- /dev/null +++ b/openv0_server/library/lucide/test-tube.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "tube", + "vial", + "phial", + "flask", + "ampoule", + "ampule", + "lab", + "chemistry", + "experiment", + "test" + ], + "categories": [ + "science" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/test-tubes.json b/openv0_server/library/lucide/test-tubes.json new file mode 100644 index 0000000..eb98b06 --- /dev/null +++ b/openv0_server/library/lucide/test-tubes.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "tubes", + "vials", + "phials", + "flasks", + "ampoules", + "ampules", + "lab", + "chemistry", + "experiment", + "test" + ], + "categories": [ + "science" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/text-cursor-input.json b/openv0_server/library/lucide/text-cursor-input.json new file mode 100644 index 0000000..7ef8197 --- /dev/null +++ b/openv0_server/library/lucide/text-cursor-input.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere", + "danielbayley", + "jguddas" + ], + "tags": [ + "select" + ], + "categories": [ + "text", + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/text-cursor.json b/openv0_server/library/lucide/text-cursor.json new file mode 100644 index 0000000..d56c7b6 --- /dev/null +++ b/openv0_server/library/lucide/text-cursor.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "select" + ], + "categories": [ + "text", + "cursors" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/text-quote.json b/openv0_server/library/lucide/text-quote.json new file mode 100644 index 0000000..17793d7 --- /dev/null +++ b/openv0_server/library/lucide/text-quote.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "blockquote", + "quotation", + "indent", + "reply", + "response" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/text-select.json b/openv0_server/library/lucide/text-select.json new file mode 100644 index 0000000..a79c673 --- /dev/null +++ b/openv0_server/library/lucide/text-select.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "find", + "search", + "selection", + "dashed" + ], + "categories": [ + "text", + "cursors" + ], + "aliases": [ + "text-selection" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/text.json b/openv0_server/library/lucide/text.json new file mode 100644 index 0000000..eb25ddb --- /dev/null +++ b/openv0_server/library/lucide/text.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "find", + "search", + "data", + "txt", + "pdf", + "document" + ], + "categories": [ + "text", + "files", + "cursors" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/theater.json b/openv0_server/library/lucide/theater.json new file mode 100644 index 0000000..8247f07 --- /dev/null +++ b/openv0_server/library/lucide/theater.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "theater", + "theatre", + "entertainment", + "podium", + "stage", + "musical" + ], + "categories": [ + "buildings", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/thermometer-snowflake.json b/openv0_server/library/lucide/thermometer-snowflake.json new file mode 100644 index 0000000..a706a53 --- /dev/null +++ b/openv0_server/library/lucide/thermometer-snowflake.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "temperature", + "celsius", + "fahrenheit", + "weather", + "cold", + "freeze", + "freezing" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/thermometer-sun.json b/openv0_server/library/lucide/thermometer-sun.json new file mode 100644 index 0000000..7e276f4 --- /dev/null +++ b/openv0_server/library/lucide/thermometer-sun.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "temperature", + "celsius", + "fahrenheit", + "weather", + "warm", + "hot" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/thermometer.json b/openv0_server/library/lucide/thermometer.json new file mode 100644 index 0000000..cb21f0e --- /dev/null +++ b/openv0_server/library/lucide/thermometer.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "temperature", + "celsius", + "fahrenheit", + "weather" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/thumbs-down.json b/openv0_server/library/lucide/thumbs-down.json new file mode 100644 index 0000000..ec3f8d7 --- /dev/null +++ b/openv0_server/library/lucide/thumbs-down.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "dislike", + "bad", + "emotion" + ], + "categories": [ + "account", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/thumbs-up.json b/openv0_server/library/lucide/thumbs-up.json new file mode 100644 index 0000000..62618fe --- /dev/null +++ b/openv0_server/library/lucide/thumbs-up.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "like", + "good", + "emotion" + ], + "categories": [ + "account", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/ticket.json b/openv0_server/library/lucide/ticket.json new file mode 100644 index 0000000..2de67e3 --- /dev/null +++ b/openv0_server/library/lucide/ticket.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "entry", + "pass", + "voucher", + "perforated", + "dashed" + ], + "categories": [ + "account", + "transportation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/timer-off.json b/openv0_server/library/lucide/timer-off.json new file mode 100644 index 0000000..40adb74 --- /dev/null +++ b/openv0_server/library/lucide/timer-off.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "time", + "timer", + "stopwatch" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/timer-reset.json b/openv0_server/library/lucide/timer-reset.json new file mode 100644 index 0000000..d7c3982 --- /dev/null +++ b/openv0_server/library/lucide/timer-reset.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "time", + "timer", + "stopwatch" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/timer.json b/openv0_server/library/lucide/timer.json new file mode 100644 index 0000000..1e560dc --- /dev/null +++ b/openv0_server/library/lucide/timer.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ahtohbi4", + "ericfennis" + ], + "tags": [ + "time", + "timer", + "stopwatch" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/toggle-left.json b/openv0_server/library/lucide/toggle-left.json new file mode 100644 index 0000000..64fd9d6 --- /dev/null +++ b/openv0_server/library/lucide/toggle-left.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "on", + "off", + "switch", + "boolean" + ], + "categories": [ + "layout", + "account", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/toggle-right.json b/openv0_server/library/lucide/toggle-right.json new file mode 100644 index 0000000..64fd9d6 --- /dev/null +++ b/openv0_server/library/lucide/toggle-right.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "on", + "off", + "switch", + "boolean" + ], + "categories": [ + "layout", + "account", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/tornado.json b/openv0_server/library/lucide/tornado.json new file mode 100644 index 0000000..bed432b --- /dev/null +++ b/openv0_server/library/lucide/tornado.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "weather", + "wind", + "storm", + "hurricane" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/touchpad-off.json b/openv0_server/library/lucide/touchpad-off.json new file mode 100644 index 0000000..f35feb9 --- /dev/null +++ b/openv0_server/library/lucide/touchpad-off.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "trackpad", + "cursor" + ], + "categories": [ + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/touchpad.json b/openv0_server/library/lucide/touchpad.json new file mode 100644 index 0000000..f35feb9 --- /dev/null +++ b/openv0_server/library/lucide/touchpad.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "trackpad", + "cursor" + ], + "categories": [ + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/tower-control.json b/openv0_server/library/lucide/tower-control.json new file mode 100644 index 0000000..1ec5ba9 --- /dev/null +++ b/openv0_server/library/lucide/tower-control.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "it-is-not" + ], + "tags": [ + "airport", + "travel", + "tower", + "transportation", + "lighthouse" + ], + "categories": [ + "travel", + "transportation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/toy-brick.json b/openv0_server/library/lucide/toy-brick.json new file mode 100644 index 0000000..a1389a5 --- /dev/null +++ b/openv0_server/library/lucide/toy-brick.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "jguddas", + "karsa-mistmere" + ], + "tags": [ + "lego", + "block", + "addon", + "plugin", + "integration" + ], + "categories": [ + "gaming", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/tractor.json b/openv0_server/library/lucide/tractor.json new file mode 100644 index 0000000..9e7899d --- /dev/null +++ b/openv0_server/library/lucide/tractor.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "farming", + "farmer", + "ranch", + "harvest", + "equipment", + "vehicle" + ], + "categories": [ + "transportation", + "sustainability", + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/traffic-cone.json b/openv0_server/library/lucide/traffic-cone.json new file mode 100644 index 0000000..42f9423 --- /dev/null +++ b/openv0_server/library/lucide/traffic-cone.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "roadworks", + "tarmac", + "safety", + "block" + ], + "categories": [ + "transportation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/train-front-tunnel.json b/openv0_server/library/lucide/train-front-tunnel.json new file mode 100644 index 0000000..18bbe57 --- /dev/null +++ b/openv0_server/library/lucide/train-front-tunnel.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "railway", + "metro", + "subway", + "underground", + "speed", + "bullet", + "fast", + "track", + "line" + ], + "categories": [ + "transportation", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/train-front.json b/openv0_server/library/lucide/train-front.json new file mode 100644 index 0000000..c5735d0 --- /dev/null +++ b/openv0_server/library/lucide/train-front.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "railway", + "metro", + "subway", + "underground", + "high-speed", + "bullet", + "fast", + "track", + "line" + ], + "categories": [ + "transportation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/train-track.json b/openv0_server/library/lucide/train-track.json new file mode 100644 index 0000000..e8add0f --- /dev/null +++ b/openv0_server/library/lucide/train-track.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "railway", + "line" + ], + "categories": [ + "transportation", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/tram-front.json b/openv0_server/library/lucide/tram-front.json new file mode 100644 index 0000000..301165a --- /dev/null +++ b/openv0_server/library/lucide/tram-front.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "railway", + "metro", + "subway", + "underground", + "track", + "line", + "tourism" + ], + "categories": [ + "transportation" + ], + "aliases": [ + "train" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/trash-2.json b/openv0_server/library/lucide/trash-2.json new file mode 100644 index 0000000..e2263f6 --- /dev/null +++ b/openv0_server/library/lucide/trash-2.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "garbage", + "delete", + "remove", + "bin" + ], + "categories": [ + "files", + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/trash.json b/openv0_server/library/lucide/trash.json new file mode 100644 index 0000000..e2263f6 --- /dev/null +++ b/openv0_server/library/lucide/trash.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "garbage", + "delete", + "remove", + "bin" + ], + "categories": [ + "files", + "mail" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/tree-deciduous.json b/openv0_server/library/lucide/tree-deciduous.json new file mode 100644 index 0000000..cc1d925 --- /dev/null +++ b/openv0_server/library/lucide/tree-deciduous.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "tree", + "forest", + "park", + "nature" + ], + "categories": [ + "nature" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/tree-pine.json b/openv0_server/library/lucide/tree-pine.json new file mode 100644 index 0000000..97f667a --- /dev/null +++ b/openv0_server/library/lucide/tree-pine.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas", + "danielbayley" + ], + "tags": [ + "tree", + "pine", + "forest", + "park", + "nature" + ], + "categories": [ + "nature" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/trees.json b/openv0_server/library/lucide/trees.json new file mode 100644 index 0000000..52ef265 --- /dev/null +++ b/openv0_server/library/lucide/trees.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "tree", + "forest", + "park", + "nature" + ], + "categories": [ + "nature" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/trello.json b/openv0_server/library/lucide/trello.json new file mode 100644 index 0000000..9d41a4a --- /dev/null +++ b/openv0_server/library/lucide/trello.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "bdbch", + "csandman", + "mittalyashu", + "ericfennis" + ], + "tags": [ + "logo", + "brand" + ], + "categories": [ + "account", + "brands", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/trending-down.json b/openv0_server/library/lucide/trending-down.json new file mode 100644 index 0000000..c3d5492 --- /dev/null +++ b/openv0_server/library/lucide/trending-down.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "karsa-mistmere" + ], + "tags": [ + "statistics" + ], + "categories": [ + "charts", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/trending-up.json b/openv0_server/library/lucide/trending-up.json new file mode 100644 index 0000000..c3d5492 --- /dev/null +++ b/openv0_server/library/lucide/trending-up.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "karsa-mistmere" + ], + "tags": [ + "statistics" + ], + "categories": [ + "charts", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/triangle-right.json b/openv0_server/library/lucide/triangle-right.json new file mode 100644 index 0000000..8d7852d --- /dev/null +++ b/openv0_server/library/lucide/triangle-right.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "volume", + "controls", + "controller", + "tv remote", + "geometry", + "delta", + "ramp", + "slope", + "incline", + "increase" + ], + "categories": [ + "shapes", + "maths" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/triangle.json b/openv0_server/library/lucide/triangle.json new file mode 100644 index 0000000..f7cc571 --- /dev/null +++ b/openv0_server/library/lucide/triangle.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "equilateral", + "delta", + "shape", + "pyramid", + "hierarchy" + ], + "categories": [ + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/trophy.json b/openv0_server/library/lucide/trophy.json new file mode 100644 index 0000000..fb0c468 --- /dev/null +++ b/openv0_server/library/lucide/trophy.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "prize", + "sports", + "winner", + "achievement", + "award" + ], + "categories": [ + "sports", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/truck.json b/openv0_server/library/lucide/truck.json new file mode 100644 index 0000000..b4bce18 --- /dev/null +++ b/openv0_server/library/lucide/truck.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ahtohbi4", + "ericfennis", + "Andreto", + "csandman", + "karsa-mistmere", + "danielbayley" + ], + "tags": [ + "delivery", + "van", + "shipping", + "haulage", + "lorry" + ], + "categories": [ + "transportation" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/turtle.json b/openv0_server/library/lucide/turtle.json new file mode 100644 index 0000000..d301aef --- /dev/null +++ b/openv0_server/library/lucide/turtle.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "animal", + "pet", + "tortoise", + "slow", + "speed" + ], + "categories": [ + "animals" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/tv-2.json b/openv0_server/library/lucide/tv-2.json new file mode 100644 index 0000000..25c12ec --- /dev/null +++ b/openv0_server/library/lucide/tv-2.json @@ -0,0 +1,30 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "flatscreen", + "television", + "stream", + "display", + "widescreen", + "high-definition", + "hd", + "1080p", + "4k", + "8k", + "smart", + "digital", + "video", + "home cinema", + "entertainment", + "showtime", + "channels", + "catchup" + ], + "categories": [ + "devices", + "multimedia" + ] +} diff --git a/openv0_server/library/lucide/tv.json b/openv0_server/library/lucide/tv.json new file mode 100644 index 0000000..830f2d9 --- /dev/null +++ b/openv0_server/library/lucide/tv.json @@ -0,0 +1,43 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "television", + "stream", + "display", + "widescreen", + "high-definition", + "hd", + "1080p", + "4k", + "8k", + "smart", + "digital", + "video", + "entertainment", + "showtime", + "channels", + "terrestrial", + "satellite", + "cable", + "broadcast", + "live", + "frequency", + "tune", + "scan", + "aerial", + "receiver", + "transmission", + "signal", + "connection", + "connectivity" + ], + "categories": [ + "devices", + "multimedia", + "communication" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/twitch.json b/openv0_server/library/lucide/twitch.json new file mode 100644 index 0000000..f3d6e50 --- /dev/null +++ b/openv0_server/library/lucide/twitch.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ahtohbi4", + "johnletey" + ], + "tags": [ + "logo", + "social" + ], + "categories": [ + "brands", + "social", + "account", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/twitter.json b/openv0_server/library/lucide/twitter.json new file mode 100644 index 0000000..0f81517 --- /dev/null +++ b/openv0_server/library/lucide/twitter.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "logo", + "social" + ], + "categories": [ + "brands", + "social", + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/type.json b/openv0_server/library/lucide/type.json new file mode 100644 index 0000000..68a3bcc --- /dev/null +++ b/openv0_server/library/lucide/type.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "text", + "font", + "typography" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/umbrella.json b/openv0_server/library/lucide/umbrella.json new file mode 100644 index 0000000..482bb80 --- /dev/null +++ b/openv0_server/library/lucide/umbrella.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "rain", + "weather" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/underline.json b/openv0_server/library/lucide/underline.json new file mode 100644 index 0000000..5c2e2f8 --- /dev/null +++ b/openv0_server/library/lucide/underline.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis", + "csandman", + "johnletey" + ], + "tags": [ + "text", + "format" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/undo-2.json b/openv0_server/library/lucide/undo-2.json new file mode 100644 index 0000000..233e30c --- /dev/null +++ b/openv0_server/library/lucide/undo-2.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "lscheibel", + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "redo", + "rerun", + "history", + "back", + "return", + "reverse", + "revert", + "direction", + "u-turn" + ], + "categories": [ + "text", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/undo-dot.json b/openv0_server/library/lucide/undo-dot.json new file mode 100644 index 0000000..4b4adaf --- /dev/null +++ b/openv0_server/library/lucide/undo-dot.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "redo", + "history", + "step", + "back" + ], + "categories": [ + "text", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/undo.json b/openv0_server/library/lucide/undo.json new file mode 100644 index 0000000..608b4f9 --- /dev/null +++ b/openv0_server/library/lucide/undo.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "aelfric", + "ericfennis", + "csandman" + ], + "tags": [ + "redo", + "rerun", + "history" + ], + "categories": [ + "text", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/unfold-horizontal.json b/openv0_server/library/lucide/unfold-horizontal.json new file mode 100644 index 0000000..647cefd --- /dev/null +++ b/openv0_server/library/lucide/unfold-horizontal.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "arrow", + "collapse", + "fold", + "vertical", + "dashed" + ], + "categories": [ + "arrows", + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/unfold-vertical.json b/openv0_server/library/lucide/unfold-vertical.json new file mode 100644 index 0000000..e0cd802 --- /dev/null +++ b/openv0_server/library/lucide/unfold-vertical.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "arrow", + "expand", + "vertical", + "dashed" + ], + "categories": [ + "arrows", + "layout" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/ungroup.json b/openv0_server/library/lucide/ungroup.json new file mode 100644 index 0000000..8cba1bc --- /dev/null +++ b/openv0_server/library/lucide/ungroup.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "cubes", + "packages", + "parts", + "units", + "collection", + "cluster", + "separate" + ], + "categories": [ + "shapes", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/unlink-2.json b/openv0_server/library/lucide/unlink-2.json new file mode 100644 index 0000000..5926a3e --- /dev/null +++ b/openv0_server/library/lucide/unlink-2.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "csandman" + ], + "tags": [ + "url", + "unchain" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/unlink.json b/openv0_server/library/lucide/unlink.json new file mode 100644 index 0000000..5926a3e --- /dev/null +++ b/openv0_server/library/lucide/unlink.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis", + "csandman" + ], + "tags": [ + "url", + "unchain" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/unlock.json b/openv0_server/library/lucide/unlock.json new file mode 100644 index 0000000..4fb211f --- /dev/null +++ b/openv0_server/library/lucide/unlock.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "security" + ], + "categories": [ + "security" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/unplug.json b/openv0_server/library/lucide/unplug.json new file mode 100644 index 0000000..4bdafc4 --- /dev/null +++ b/openv0_server/library/lucide/unplug.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "karsa-mistmere" + ], + "tags": [ + "electricity", + "electronics", + "socket", + "outlet", + "disconnect" + ], + "categories": [ + "devices", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/upload-cloud.json b/openv0_server/library/lucide/upload-cloud.json new file mode 100644 index 0000000..2dcb619 --- /dev/null +++ b/openv0_server/library/lucide/upload-cloud.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "file" + ], + "categories": [ + "arrows", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/upload.json b/openv0_server/library/lucide/upload.json new file mode 100644 index 0000000..03c9302 --- /dev/null +++ b/openv0_server/library/lucide/upload.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "file" + ], + "categories": [ + "arrows", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/usb.json b/openv0_server/library/lucide/usb.json new file mode 100644 index 0000000..41c260d --- /dev/null +++ b/openv0_server/library/lucide/usb.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "universal", + "serial", + "bus", + "controller", + "connector", + "interface" + ], + "categories": [ + "devices", + "multimedia", + "home" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/user-2.json b/openv0_server/library/lucide/user-2.json new file mode 100644 index 0000000..5fec047 --- /dev/null +++ b/openv0_server/library/lucide/user-2.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "person", + "account", + "contact" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/user-check-2.json b/openv0_server/library/lucide/user-check-2.json new file mode 100644 index 0000000..c2bf5b2 --- /dev/null +++ b/openv0_server/library/lucide/user-check-2.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "followed", + "subscribed", + "done", + "todo", + "tick", + "complete", + "task" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/user-check.json b/openv0_server/library/lucide/user-check.json new file mode 100644 index 0000000..61f8d2b --- /dev/null +++ b/openv0_server/library/lucide/user-check.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "followed", + "subscribed", + "done", + "todo", + "tick", + "complete", + "task" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/user-circle-2.json b/openv0_server/library/lucide/user-circle-2.json new file mode 100644 index 0000000..3278267 --- /dev/null +++ b/openv0_server/library/lucide/user-circle-2.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "person", + "account", + "contact" + ], + "categories": [ + "account", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/user-circle.json b/openv0_server/library/lucide/user-circle.json new file mode 100644 index 0000000..3278267 --- /dev/null +++ b/openv0_server/library/lucide/user-circle.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "person", + "account", + "contact" + ], + "categories": [ + "account", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/user-cog-2.json b/openv0_server/library/lucide/user-cog-2.json new file mode 100644 index 0000000..05a65b4 --- /dev/null +++ b/openv0_server/library/lucide/user-cog-2.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "settings", + "edit", + "cog", + "gear" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/user-cog.json b/openv0_server/library/lucide/user-cog.json new file mode 100644 index 0000000..2f17aed --- /dev/null +++ b/openv0_server/library/lucide/user-cog.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "settings", + "edit", + "cog", + "gear" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/user-minus-2.json b/openv0_server/library/lucide/user-minus-2.json new file mode 100644 index 0000000..09a3200 --- /dev/null +++ b/openv0_server/library/lucide/user-minus-2.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "delete", + "remove", + "unfollow", + "unsubscribe" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/user-minus.json b/openv0_server/library/lucide/user-minus.json new file mode 100644 index 0000000..13e0002 --- /dev/null +++ b/openv0_server/library/lucide/user-minus.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "delete", + "remove", + "unfollow", + "unsubscribe" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/user-plus-2.json b/openv0_server/library/lucide/user-plus-2.json new file mode 100644 index 0000000..df57e1a --- /dev/null +++ b/openv0_server/library/lucide/user-plus-2.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "new", + "add", + "create", + "follow", + "subscribe" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/user-plus.json b/openv0_server/library/lucide/user-plus.json new file mode 100644 index 0000000..827061d --- /dev/null +++ b/openv0_server/library/lucide/user-plus.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "new", + "add", + "create", + "follow", + "subscribe" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/user-square-2.json b/openv0_server/library/lucide/user-square-2.json new file mode 100644 index 0000000..3278267 --- /dev/null +++ b/openv0_server/library/lucide/user-square-2.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "person", + "account", + "contact" + ], + "categories": [ + "account", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/user-square.json b/openv0_server/library/lucide/user-square.json new file mode 100644 index 0000000..3278267 --- /dev/null +++ b/openv0_server/library/lucide/user-square.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "person", + "account", + "contact" + ], + "categories": [ + "account", + "shapes" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/user-x-2.json b/openv0_server/library/lucide/user-x-2.json new file mode 100644 index 0000000..744684e --- /dev/null +++ b/openv0_server/library/lucide/user-x-2.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "delete", + "remove", + "unfollow", + "unsubscribe", + "unavailable" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/user-x.json b/openv0_server/library/lucide/user-x.json new file mode 100644 index 0000000..a4e27a9 --- /dev/null +++ b/openv0_server/library/lucide/user-x.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "delete", + "remove", + "unfollow", + "unsubscribe", + "unavailable" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/user.json b/openv0_server/library/lucide/user.json new file mode 100644 index 0000000..6e62a43 --- /dev/null +++ b/openv0_server/library/lucide/user.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "person", + "account", + "contact" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/users-2.json b/openv0_server/library/lucide/users-2.json new file mode 100644 index 0000000..df69abd --- /dev/null +++ b/openv0_server/library/lucide/users-2.json @@ -0,0 +1,13 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "group", + "people" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/users.json b/openv0_server/library/lucide/users.json new file mode 100644 index 0000000..9ef9860 --- /dev/null +++ b/openv0_server/library/lucide/users.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "group", + "people" + ], + "categories": [ + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/utensils-crossed.json b/openv0_server/library/lucide/utensils-crossed.json new file mode 100644 index 0000000..08cf78f --- /dev/null +++ b/openv0_server/library/lucide/utensils-crossed.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "food", + "restaurant", + "meal", + "cutlery", + "breakfast", + "dinner", + "supper" + ], + "categories": [ + "food-beverage", + "travel", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/utensils.json b/openv0_server/library/lucide/utensils.json new file mode 100644 index 0000000..7331696 --- /dev/null +++ b/openv0_server/library/lucide/utensils.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "food", + "restaurant", + "meal", + "cutlery", + "breakfast", + "dinner", + "supper" + ], + "categories": [ + "food-beverage", + "travel", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/utility-pole.json b/openv0_server/library/lucide/utility-pole.json new file mode 100644 index 0000000..057ce17 --- /dev/null +++ b/openv0_server/library/lucide/utility-pole.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "electricity", + "energy", + "transmission line", + "telegraph pole", + "power lines" + ], + "categories": [ + "buildings", + "home", + "sustainability" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/variable.json b/openv0_server/library/lucide/variable.json new file mode 100644 index 0000000..aa754b0 --- /dev/null +++ b/openv0_server/library/lucide/variable.json @@ -0,0 +1,26 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas" + ], + "tags": [ + "code", + "coding", + "programming", + "symbol", + "calculate", + "algebra", + "x", + "parentheses", + "parenthesis", + "brackets", + "parameter", + "(", + ")" + ], + "categories": [ + "development", + "maths" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/vegan.json b/openv0_server/library/lucide/vegan.json new file mode 100644 index 0000000..f35d759 --- /dev/null +++ b/openv0_server/library/lucide/vegan.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "vegetarian", + "fruitarian", + "herbivorous", + "animal rights", + "diet" + ], + "categories": [ + "food-beverage", + "sustainability" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/venetian-mask.json b/openv0_server/library/lucide/venetian-mask.json new file mode 100644 index 0000000..4145e56 --- /dev/null +++ b/openv0_server/library/lucide/venetian-mask.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "mask", + "masquerade", + "impersonate", + "secret", + "incognito" + ], + "categories": [ + "account", + "gaming" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/vibrate-off.json b/openv0_server/library/lucide/vibrate-off.json new file mode 100644 index 0000000..fe60e0c --- /dev/null +++ b/openv0_server/library/lucide/vibrate-off.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "lscheibel", + "ericfennis" + ], + "tags": [ + "smartphone", + "notification", + "rumble", + "haptic feedback", + "notifications", + "screen" + ], + "categories": [ + "devices", + "connectivity", + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/vibrate.json b/openv0_server/library/lucide/vibrate.json new file mode 100644 index 0000000..f00d9d1 --- /dev/null +++ b/openv0_server/library/lucide/vibrate.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ericfennis" + ], + "tags": [ + "smartphone", + "notification", + "rumble", + "haptic feedback", + "screen" + ], + "categories": [ + "devices", + "connectivity", + "account", + "notifications" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/video-off.json b/openv0_server/library/lucide/video-off.json new file mode 100644 index 0000000..2555ebf --- /dev/null +++ b/openv0_server/library/lucide/video-off.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "camera", + "movie", + "film" + ], + "categories": [ + "devices", + "communication", + "connectivity", + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/video.json b/openv0_server/library/lucide/video.json new file mode 100644 index 0000000..0ad2f8c --- /dev/null +++ b/openv0_server/library/lucide/video.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "camera", + "movie", + "film", + "recording", + "motion picture", + "camcorder", + "reel" + ], + "categories": [ + "devices", + "communication", + "connectivity", + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/videotape.json b/openv0_server/library/lucide/videotape.json new file mode 100644 index 0000000..fd58a2b --- /dev/null +++ b/openv0_server/library/lucide/videotape.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "tags": [ + "vhs", + "movie", + "film", + "recording", + "motion picture", + "showreel", + "cassette" + ], + "categories": [ + "devices", + "communication", + "connectivity", + "photography", + "files" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/view.json b/openv0_server/library/lucide/view.json new file mode 100644 index 0000000..33ae8ec --- /dev/null +++ b/openv0_server/library/lucide/view.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "zenoamaro", + "ericfennis", + "csandman", + "karsa-mistmere" + ], + "tags": [ + "eye", + "look" + ], + "categories": [ + "design", + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/voicemail.json b/openv0_server/library/lucide/voicemail.json new file mode 100644 index 0000000..7ef0d5c --- /dev/null +++ b/openv0_server/library/lucide/voicemail.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "phone", + "cassette", + "tape", + "reel", + "recording", + "audio" + ], + "categories": [ + "connectivity", + "devices", + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/volume-1.json b/openv0_server/library/lucide/volume-1.json new file mode 100644 index 0000000..5c064a5 --- /dev/null +++ b/openv0_server/library/lucide/volume-1.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "music", + "sound", + "speaker" + ], + "categories": [ + "connectivity", + "communication", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/volume-2.json b/openv0_server/library/lucide/volume-2.json new file mode 100644 index 0000000..a64942c --- /dev/null +++ b/openv0_server/library/lucide/volume-2.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "music", + "sound", + "speaker" + ], + "categories": [ + "connectivity", + "communication", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/volume-x.json b/openv0_server/library/lucide/volume-x.json new file mode 100644 index 0000000..837bf16 --- /dev/null +++ b/openv0_server/library/lucide/volume-x.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "music", + "sound", + "mute", + "speaker" + ], + "categories": [ + "connectivity", + "communication", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/volume.json b/openv0_server/library/lucide/volume.json new file mode 100644 index 0000000..a891326 --- /dev/null +++ b/openv0_server/library/lucide/volume.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "music", + "sound", + "mute", + "speaker" + ], + "categories": [ + "connectivity", + "communication", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/vote.json b/openv0_server/library/lucide/vote.json new file mode 100644 index 0000000..1192e07 --- /dev/null +++ b/openv0_server/library/lucide/vote.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "ptrgast", + "karsa-mistmere" + ], + "tags": [ + "vote", + "poll", + "ballot", + "political", + "social", + "check", + "tick" + ], + "categories": [ + "social" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/wallet-2.json b/openv0_server/library/lucide/wallet-2.json new file mode 100644 index 0000000..14ed04a --- /dev/null +++ b/openv0_server/library/lucide/wallet-2.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "finance", + "pocket" + ], + "categories": [ + "account", + "money" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/wallet-cards.json b/openv0_server/library/lucide/wallet-cards.json new file mode 100644 index 0000000..56999f4 --- /dev/null +++ b/openv0_server/library/lucide/wallet-cards.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "money", + "finance", + "pocket", + "credit", + "purchase", + "payment", + "shopping", + "retail", + "consumer", + "cc" + ], + "categories": [ + "account", + "money" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/wallet.json b/openv0_server/library/lucide/wallet.json new file mode 100644 index 0000000..857a3c3 --- /dev/null +++ b/openv0_server/library/lucide/wallet.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ahtohbi4", + "ericfennis" + ], + "tags": [ + "money", + "finance", + "pocket" + ], + "categories": [ + "account", + "money" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/wallpaper.json b/openv0_server/library/lucide/wallpaper.json new file mode 100644 index 0000000..c430fc0 --- /dev/null +++ b/openv0_server/library/lucide/wallpaper.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "cover", + "lock screen" + ], + "categories": [ + "account", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/wand-2.json b/openv0_server/library/lucide/wand-2.json new file mode 100644 index 0000000..d2975c1 --- /dev/null +++ b/openv0_server/library/lucide/wand-2.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "magic", + "wizard" + ], + "categories": [ + "design", + "gaming", + "cursors", + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/wand.json b/openv0_server/library/lucide/wand.json new file mode 100644 index 0000000..38fff25 --- /dev/null +++ b/openv0_server/library/lucide/wand.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis" + ], + "tags": [ + "magic", + "selection" + ], + "categories": [ + "design", + "gaming", + "cursors", + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/warehouse.json b/openv0_server/library/lucide/warehouse.json new file mode 100644 index 0000000..6f3e3dd --- /dev/null +++ b/openv0_server/library/lucide/warehouse.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "storage", + "logistics", + "building" + ], + "categories": [ + "buildings", + "maps" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/watch.json b/openv0_server/library/lucide/watch.json new file mode 100644 index 0000000..d9f6345 --- /dev/null +++ b/openv0_server/library/lucide/watch.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "clock", + "time" + ], + "categories": [ + "time" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/waves.json b/openv0_server/library/lucide/waves.json new file mode 100644 index 0000000..b13e1ab --- /dev/null +++ b/openv0_server/library/lucide/waves.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "water", + "sea", + "sound", + "hertz", + "wavelength", + "vibrate" + ], + "categories": [ + "weather", + "maps", + "multimedia" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/webcam.json b/openv0_server/library/lucide/webcam.json new file mode 100644 index 0000000..da31c66 --- /dev/null +++ b/openv0_server/library/lucide/webcam.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "mittalyashu", + "ericfennis", + "karsa-mistmere" + ], + "tags": [ + "camera", + "security" + ], + "categories": [ + "connectivity", + "devices", + "communication" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/webhook.json b/openv0_server/library/lucide/webhook.json new file mode 100644 index 0000000..2d360be --- /dev/null +++ b/openv0_server/library/lucide/webhook.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "push api", + "interface", + "callback" + ], + "categories": [ + "development", + "social", + "account" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/wheat-off.json b/openv0_server/library/lucide/wheat-off.json new file mode 100644 index 0000000..b567f8f --- /dev/null +++ b/openv0_server/library/lucide/wheat-off.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "corn", + "cereal", + "grain", + "gluten free", + "allergy", + "intolerance", + "diet" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/wheat.json b/openv0_server/library/lucide/wheat.json new file mode 100644 index 0000000..193deb9 --- /dev/null +++ b/openv0_server/library/lucide/wheat.json @@ -0,0 +1,15 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere" + ], + "tags": [ + "corn", + "cereal", + "grain", + "gluten" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/whole-word.json b/openv0_server/library/lucide/whole-word.json new file mode 100644 index 0000000..af93667 --- /dev/null +++ b/openv0_server/library/lucide/whole-word.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley" + ], + "tags": [ + "text", + "selection", + "letters", + "characters", + "font", + "typography" + ], + "categories": [ + "text" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/wifi-off.json b/openv0_server/library/lucide/wifi-off.json new file mode 100644 index 0000000..b5b413b --- /dev/null +++ b/openv0_server/library/lucide/wifi-off.json @@ -0,0 +1,14 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "disabled" + ], + "categories": [ + "connectivity", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/wifi.json b/openv0_server/library/lucide/wifi.json new file mode 100644 index 0000000..007a853 --- /dev/null +++ b/openv0_server/library/lucide/wifi.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "connection", + "signal", + "wireless" + ], + "categories": [ + "connectivity", + "devices" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/wind.json b/openv0_server/library/lucide/wind.json new file mode 100644 index 0000000..0126b01 --- /dev/null +++ b/openv0_server/library/lucide/wind.json @@ -0,0 +1,16 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis" + ], + "tags": [ + "weather", + "air", + "blow" + ], + "categories": [ + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/wine-off.json b/openv0_server/library/lucide/wine-off.json new file mode 100644 index 0000000..f84e9b6 --- /dev/null +++ b/openv0_server/library/lucide/wine-off.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "alcohol", + "beverage", + "drink", + "glass", + "alcohol free", + "abstinence", + "abstaining", + "teetotalism", + "allergy", + "intolerance" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/wine.json b/openv0_server/library/lucide/wine.json new file mode 100644 index 0000000..4d9f3ff --- /dev/null +++ b/openv0_server/library/lucide/wine.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "alcohol", + "beverage", + "bar", + "drink", + "glass", + "sommelier", + "vineyard", + "winery" + ], + "categories": [ + "food-beverage" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/workflow.json b/openv0_server/library/lucide/workflow.json new file mode 100644 index 0000000..deae201 --- /dev/null +++ b/openv0_server/library/lucide/workflow.json @@ -0,0 +1,20 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "danielbayley", + "jguddas" + ], + "tags": [ + "action", + "continuous integration", + "ci", + "automation", + "devops", + "network", + "node", + "connection" + ], + "categories": [ + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/wrap-text.json b/openv0_server/library/lucide/wrap-text.json new file mode 100644 index 0000000..fb132d0 --- /dev/null +++ b/openv0_server/library/lucide/wrap-text.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "bduffany", + "ericfennis" + ], + "tags": [ + "words", + "lines", + "break", + "paragraph" + ], + "categories": [ + "text", + "arrows" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/wrench.json b/openv0_server/library/lucide/wrench.json new file mode 100644 index 0000000..74caf19 --- /dev/null +++ b/openv0_server/library/lucide/wrench.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "Andreto", + "ericfennis", + "csandman" + ], + "tags": [ + "account", + "tool", + "settings", + "spanner" + ], + "categories": [ + "account", + "development", + "tools" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/x-circle.json b/openv0_server/library/lucide/x-circle.json new file mode 100644 index 0000000..66037f1 --- /dev/null +++ b/openv0_server/library/lucide/x-circle.json @@ -0,0 +1,28 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "cancel", + "close", + "delete", + "remove", + "times", + "clear", + "error", + "incorrect", + "wrong", + "mistake", + "failure", + "linter", + "multiply", + "multiplication" + ], + "categories": [ + "maths", + "shapes", + "development" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/x-octagon.json b/openv0_server/library/lucide/x-octagon.json new file mode 100644 index 0000000..584b989 --- /dev/null +++ b/openv0_server/library/lucide/x-octagon.json @@ -0,0 +1,21 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "delete", + "stop", + "alert", + "warning", + "times", + "clear", + "maths" + ], + "categories": [ + "maths", + "shapes", + "notifications" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/x-square.json b/openv0_server/library/lucide/x-square.json new file mode 100644 index 0000000..60616d4 --- /dev/null +++ b/openv0_server/library/lucide/x-square.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "cancel", + "close", + "delete", + "remove", + "times", + "clear", + "maths", + "multiply", + "multiplication" + ], + "categories": [ + "maths", + "shapes", + "notifications" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/x.json b/openv0_server/library/lucide/x.json new file mode 100644 index 0000000..74d0af0 --- /dev/null +++ b/openv0_server/library/lucide/x.json @@ -0,0 +1,22 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "cancel", + "close", + "delete", + "remove", + "times", + "clear", + "maths", + "multiply", + "multiplication" + ], + "categories": [ + "notifications", + "maths" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/youtube.json b/openv0_server/library/lucide/youtube.json new file mode 100644 index 0000000..cea2740 --- /dev/null +++ b/openv0_server/library/lucide/youtube.json @@ -0,0 +1,23 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "csandman", + "ericfennis", + "karsa-mistmere", + "jguddas" + ], + "tags": [ + "logo", + "social", + "video", + "play" + ], + "categories": [ + "account", + "multimedia", + "social", + "text", + "brands" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/zap-off.json b/openv0_server/library/lucide/zap-off.json new file mode 100644 index 0000000..a005ad4 --- /dev/null +++ b/openv0_server/library/lucide/zap-off.json @@ -0,0 +1,19 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "karsa-mistmere", + "ericfennis" + ], + "tags": [ + "flash", + "camera", + "lightning" + ], + "categories": [ + "connectivity", + "devices", + "photography", + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/zap.json b/openv0_server/library/lucide/zap.json new file mode 100644 index 0000000..6c41179 --- /dev/null +++ b/openv0_server/library/lucide/zap.json @@ -0,0 +1,17 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis" + ], + "tags": [ + "flash", + "camera", + "lightning" + ], + "categories": [ + "connectivity", + "devices", + "photography", + "weather" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/zoom-in.json b/openv0_server/library/lucide/zoom-in.json new file mode 100644 index 0000000..bbd51be --- /dev/null +++ b/openv0_server/library/lucide/zoom-in.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "magnifying glass", + "plus" + ], + "categories": [ + "accessibility", + "layout", + "design", + "text", + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide/zoom-out.json b/openv0_server/library/lucide/zoom-out.json new file mode 100644 index 0000000..bbd51be --- /dev/null +++ b/openv0_server/library/lucide/zoom-out.json @@ -0,0 +1,18 @@ +{ + "$schema": "../icon.schema.json", + "contributors": [ + "colebemis", + "ericfennis" + ], + "tags": [ + "magnifying glass", + "plus" + ], + "categories": [ + "accessibility", + "layout", + "design", + "text", + "photography" + ] +} \ No newline at end of file diff --git a/openv0_server/library/lucide_dump.json b/openv0_server/library/lucide_dump.json new file mode 100644 index 0000000..9ee04aa --- /dev/null +++ b/openv0_server/library/lucide_dump.json @@ -0,0 +1 @@ +[{"source":"accessibility.json","name":"Accessibility","title":"Accessibility","tags":["disability","disabled","dda","wheelchair"],"categories":["accessibility","medical"]},{"source":"activity-square.json","name":"ActivitySquare","title":"Activity Square","tags":["pulse","action","motion","movement","exercise","fitness","healthcare","heart rate monitor","vital signs","vitals","emergency room","er","intensive care","hospital","defibrillator","earthquake","siesmic","magnitude","richter scale","aftershock","tremor","shockwave","audio","waveform","synthesizer","synthesiser","music"],"categories":["medical","account","social","science","multimedia","shapes"]},{"source":"activity.json","name":"Activity","title":"Activity","tags":["pulse","action","motion","movement","exercise","fitness","healthcare","heart rate monitor","vital signs","vitals","emergency room","er","intensive care","hospital","defibrillator","earthquake","siesmic","magnitude","richter scale","aftershock","tremor","shockwave","audio","waveform","synthesizer","synthesiser","music"],"categories":["medical","account","social","science","multimedia"]},{"source":"air-vent.json","name":"AirVent","title":"Air Vent","tags":["air conditioner","ac","central air","cooling","climate-control"],"categories":["home"]},{"source":"airplay.json","name":"Airplay","title":"Airplay","tags":["stream","cast","mirroring","screen","monitor"],"categories":["multimedia","connectivity","devices","brands"]},{"source":"alarm-check.json","name":"AlarmCheck","title":"Alarm Check","tags":["done","todo","tick","complete","task"],"categories":["devices","notifications","time"]},{"source":"alarm-clock-off.json","name":"AlarmClockOff","title":"Alarm Clock Off","tags":["morning","turn-off"],"categories":["devices","notifications","time"]},{"source":"alarm-clock.json","name":"AlarmClock","title":"Alarm Clock","tags":["morning"],"categories":["devices","notifications","time"]},{"source":"alarm-minus.json","name":"AlarmMinus","title":"Alarm Minus","tags":["remove"],"categories":["devices","notifications","time"]},{"source":"alarm-plus.json","name":"AlarmPlus","title":"Alarm Plus","tags":["add"],"categories":["devices","notifications","time"]},{"source":"album.json","name":"Album","title":"Album","tags":["photo","book"],"categories":["photography","multimedia"]},{"source":"alert-circle.json","name":"AlertCircle","title":"Alert Circle","tags":["warning","alert","danger","exclamation mark"],"categories":["notifications","shapes"]},{"source":"alert-octagon.json","name":"AlertOctagon","title":"Alert Octagon","tags":["warning","alert","danger","exclamation mark"],"categories":["notifications","shapes"]},{"source":"alert-triangle.json","name":"AlertTriangle","title":"Alert Triangle","tags":["warning","alert","danger","exclamation mark","linter"],"categories":["notifications","shapes","development"]},{"source":"align-center-horizontal.json","name":"AlignCenterHorizontal","title":"Align Center Horizontal","tags":["items","flex","justify"],"categories":["layout"]},{"source":"align-center-vertical.json","name":"AlignCenterVertical","title":"Align Center Vertical","tags":["items","flex","justify"],"categories":["layout"]},{"source":"align-center.json","name":"AlignCenter","title":"Align Center","tags":["text","alignment","center"],"categories":["text"]},{"source":"align-end-horizontal.json","name":"AlignEndHorizontal","title":"Align End Horizontal","tags":["items","bottom","flex","justify"],"categories":["layout"]},{"source":"align-end-vertical.json","name":"AlignEndVertical","title":"Align End Vertical","tags":["items","right","flex","justify"],"categories":["layout"]},{"source":"align-horizontal-distribute-center.json","name":"AlignHorizontalDistributeCenter","title":"Align Horizontal Distribute Center","tags":["items","flex","justify","space","evenly","around"],"categories":["layout"]},{"source":"align-horizontal-distribute-end.json","name":"AlignHorizontalDistributeEnd","title":"Align Horizontal Distribute End","tags":["right","items","flex","justify"],"categories":["layout"]},{"source":"align-horizontal-distribute-start.json","name":"AlignHorizontalDistributeStart","title":"Align Horizontal Distribute Start","tags":["left","items","flex","justify"],"categories":["layout"]},{"source":"align-horizontal-justify-center.json","name":"AlignHorizontalJustifyCenter","title":"Align Horizontal Justify Center","tags":["center","items","flex","justify"],"categories":["layout"]},{"source":"align-horizontal-justify-end.json","name":"AlignHorizontalJustifyEnd","title":"Align Horizontal Justify End","tags":["right","items","flex","justify"],"categories":["layout"]},{"source":"align-horizontal-justify-start.json","name":"AlignHorizontalJustifyStart","title":"Align Horizontal Justify Start","tags":["left","items","flex","justify"],"categories":["layout"]},{"source":"align-horizontal-space-around.json","name":"AlignHorizontalSpaceAround","title":"Align Horizontal Space Around","tags":["center","items","flex","justify","distribute","between"],"categories":["layout"]},{"source":"align-horizontal-space-between.json","name":"AlignHorizontalSpaceBetween","title":"Align Horizontal Space Between","tags":["around","items","bottom","flex","justify"],"categories":["layout"]},{"source":"align-justify.json","name":"AlignJustify","title":"Align Justify","tags":["text","alignment","justified","menu","list"],"categories":["text"]},{"source":"align-left.json","name":"AlignLeft","title":"Align Left","tags":["text","alignment","left","list"],"categories":["text"]},{"source":"align-right.json","name":"AlignRight","title":"Align Right","tags":["text","alignment","right"],"categories":["text"]},{"source":"align-start-horizontal.json","name":"AlignStartHorizontal","title":"Align Start Horizontal","tags":["top","items","flex","justify"],"categories":["layout"]},{"source":"align-start-vertical.json","name":"AlignStartVertical","title":"Align Start Vertical","tags":["left","items","flex","justify"],"categories":["layout"]},{"source":"align-vertical-distribute-center.json","name":"AlignVerticalDistributeCenter","title":"Align Vertical Distribute Center","tags":["items","flex","justify","space","evenly","around"],"categories":["layout"]},{"source":"align-vertical-distribute-end.json","name":"AlignVerticalDistributeEnd","title":"Align Vertical Distribute End","tags":["bottom","items","flex","justify"],"categories":["layout"]},{"source":"align-vertical-distribute-start.json","name":"AlignVerticalDistributeStart","title":"Align Vertical Distribute Start","tags":["top","items","flex","justify"],"categories":["layout"]},{"source":"align-vertical-justify-center.json","name":"AlignVerticalJustifyCenter","title":"Align Vertical Justify Center","tags":["center","items","flex","justify","distribute","between"],"categories":["layout"]},{"source":"align-vertical-justify-end.json","name":"AlignVerticalJustifyEnd","title":"Align Vertical Justify End","tags":["bottom","items","flex","justify","distribute","between"],"categories":["layout"]},{"source":"align-vertical-justify-start.json","name":"AlignVerticalJustifyStart","title":"Align Vertical Justify Start","tags":["top","items","flex","justify","distribute","between"],"categories":["layout"]},{"source":"align-vertical-space-around.json","name":"AlignVerticalSpaceAround","title":"Align Vertical Space Around","tags":["center","items","flex","justify","distribute","between"],"categories":["layout"]},{"source":"align-vertical-space-between.json","name":"AlignVerticalSpaceBetween","title":"Align Vertical Space Between","tags":["center","items","flex","justify","distribute","between"],"categories":["layout"]},{"source":"ampersand.json","name":"Ampersand","title":"Ampersand","tags":["and","typography","operator","join","concatenate","code","&"],"categories":["text","development"]},{"source":"ampersands.json","name":"Ampersands","title":"Ampersands","tags":["and","operator","then","code","&&"],"categories":["text","development"]},{"source":"anchor.json","name":"Anchor","title":"Anchor","tags":["ship"],"categories":["transportation","text","maps"]},{"source":"angry.json","name":"Angry","title":"Angry","tags":["emoji","anger","face","emotion"],"categories":["emoji"]},{"source":"annoyed.json","name":"Annoyed","title":"Annoyed","tags":["emoji","nuisance","face","emotion"],"categories":["emoji"]},{"source":"antenna.json","name":"Antenna","title":"Antenna","tags":["signal","connection","connectivity","tv","television","broadcast","live","frequency","tune","scan","channels","aerial","receiver","transmission","transducer","terrestrial","satellite","cable"],"categories":["devices","multimedia","communication"]},{"source":"aperture.json","name":"Aperture","title":"Aperture","tags":["camera","photo"],"categories":["photography"]},{"source":"app-window.json","name":"AppWindow","title":"App Window","tags":["application","executable"],"categories":["design","files","layout"]},{"source":"apple.json","name":"Apple","title":"Apple","tags":["fruit","food"],"categories":["food-beverage"]},{"source":"archive-restore.json","name":"ArchiveRestore","title":"Archive Restore","tags":["unarchive","index","backup","box","storage","records"],"categories":["files","mail"]},{"source":"archive-x.json","name":"ArchiveX","title":"Archive X","tags":["index","backup","box","storage","records","junk"],"categories":["files","mail"]},{"source":"archive.json","name":"Archive","title":"Archive","tags":["index","backup","box","storage","records"],"categories":["files","mail"]},{"source":"area-chart.json","name":"AreaChart","title":"Area Chart","tags":["statistics","diagram","graph","area"],"categories":["charts"]},{"source":"armchair.json","name":"Armchair","title":"Armchair","tags":["sofa","furniture","leisure","lounge","loveseat","couch"],"categories":["furniture"]},{"source":"arrow-big-down-dash.json","name":"ArrowBigDownDash","title":"Arrow Big Down Dash","tags":["backwards","reverse","slow","direction","south","download"],"categories":["arrows","navigation","gaming","files"]},{"source":"arrow-big-down.json","name":"ArrowBigDown","title":"Arrow Big Down","tags":["backwards","reverse","direction","south"],"categories":["arrows","navigation","gaming"]},{"source":"arrow-big-left-dash.json","name":"ArrowBigLeftDash","title":"Arrow Big Left Dash","tags":["previous","back","direction","west","turn","corner"],"categories":["arrows","navigation","gaming"]},{"source":"arrow-big-left.json","name":"ArrowBigLeft","title":"Arrow Big Left","tags":["previous","back","direction","west","indicate turn"],"categories":["arrows","navigation","gaming"]},{"source":"arrow-big-right-dash.json","name":"ArrowBigRightDash","title":"Arrow Big Right Dash","tags":["next","forward","direction","east","turn","corner"],"categories":["arrows","navigation","gaming"]},{"source":"arrow-big-right.json","name":"ArrowBigRight","title":"Arrow Big Right","tags":["next","forward","direction","east","indicate turn"],"categories":["arrows","navigation","gaming"]},{"source":"arrow-big-up-dash.json","name":"ArrowBigUpDash","title":"Arrow Big Up Dash","tags":["caps lock","capitals","keyboard","button","mac","forward","direction","north","faster","speed","boost"],"categories":["arrows","navigation","text","development","gaming"]},{"source":"arrow-big-up.json","name":"ArrowBigUp","title":"Arrow Big Up","tags":["shift","keyboard","button","mac","capitalize","capitalise","forward","direction","north"],"categories":["arrows","navigation","text","development","gaming"]},{"source":"arrow-down-0-1.json","name":"ArrowDown01","title":"Arrow Down 0 1","tags":["filter","sort","ascending","numerical"],"categories":["text","layout","arrows"]},{"source":"arrow-down-1-0.json","name":"ArrowDown10","title":"Arrow Down 1 0","tags":["filter","sort","descending","numerical"],"categories":["text","layout","arrows"]},{"source":"arrow-down-a-z.json","name":"ArrowDownAZ","title":"Arrow Down A Z","tags":["filter","sort","ascending","alphabetical"],"categories":["text","layout","arrows"]},{"source":"arrow-down-circle.json","name":"ArrowDownCircle","title":"Arrow Down Circle","tags":["backwards","reverse","direction","south","sign","button"],"categories":["arrows","navigation","shapes","gaming"]},{"source":"arrow-down-from-line.json","name":"ArrowDownFromLine","title":"Arrow Down From Line","tags":["backwards","reverse","direction","south","download","expand","fold","vertical"],"categories":["arrows","navigation","files"]},{"source":"arrow-down-left-from-circle.json","name":"ArrowDownLeftFromCircle","title":"Arrow Down Left From Circle","tags":["outwards","direction","south-west","diagonal"],"categories":["arrows","navigation","maps"]},{"source":"arrow-down-left-square.json","name":"ArrowDownLeftSquare","title":"Arrow Down Left Square","tags":["direction","south-west","diagonal","sign","turn","keyboard","button"],"categories":["arrows","navigation","shapes","gaming"]},{"source":"arrow-down-left.json","name":"ArrowDownLeft","title":"Arrow Down Left","tags":["direction","south-west","diagonal"],"categories":["arrows","navigation"]},{"source":"arrow-down-narrow-wide.json","name":"ArrowDownNarrowWide","title":"Arrow Down Narrow Wide","tags":["filter","sort","ascending"],"categories":["text","layout","arrows"]},{"source":"arrow-down-right-from-circle.json","name":"ArrowDownRightFromCircle","title":"Arrow Down Right From Circle","tags":["outwards","direction","south-east","diagonal"],"categories":["arrows","navigation","maps"]},{"source":"arrow-down-right-square.json","name":"ArrowDownRightSquare","title":"Arrow Down Right Square","tags":["direction","south-east","diagonal","sign","turn","keyboard","button"],"categories":["arrows","navigation","shapes","gaming"]},{"source":"arrow-down-right.json","name":"ArrowDownRight","title":"Arrow Down Right","tags":["direction","south-east","diagonal"],"categories":["arrows","navigation"]},{"source":"arrow-down-square.json","name":"ArrowDownSquare","title":"Arrow Down Square","tags":["backwards","reverse","direction","south","sign","keyboard","button"],"categories":["arrows","navigation","shapes","gaming"]},{"source":"arrow-down-to-dot.json","name":"ArrowDownToDot","title":"Arrow Down To Dot","tags":["direction","south","waypoint","location","step","into"],"categories":["arrows","navigation","maps"]},{"source":"arrow-down-to-line.json","name":"ArrowDownToLine","title":"Arrow Down To Line","tags":["behind","direction","south","download","save","git","version control","pull","collapse","fold","vertical"],"categories":["arrows","navigation","files","development"]},{"source":"arrow-down-up.json","name":"ArrowDownUp","title":"Arrow Down Up","tags":["bidirectional","two-way","2-way","swap","switch","network","traffic","flow","mobile data","internet","sort","reorder","move"],"categories":["arrows","navigation"]},{"source":"arrow-down-wide-narrow.json","name":"ArrowDownWideNarrow","title":"Arrow Down Wide Narrow","tags":["filter","sort","descending"],"categories":["text","layout","arrows"]},{"source":"arrow-down-z-a.json","name":"ArrowDownZA","title":"Arrow Down Z A","tags":["filter","sort","descending","alphabetical","reverse"],"categories":["text","layout","arrows"]},{"source":"arrow-down.json","name":"ArrowDown","title":"Arrow Down","tags":["backwards","reverse","direction","south"],"categories":["arrows","navigation"]},{"source":"arrow-left-circle.json","name":"ArrowLeftCircle","title":"Arrow Left Circle","tags":["previous","back","direction","west","sign","turn","button","<-"],"categories":["arrows","navigation","shapes","gaming"]},{"source":"arrow-left-from-line.json","name":"ArrowLeftFromLine","title":"Arrow Left From Line","tags":["previous","back","direction","west","expand","fold","horizontal","<-|"],"categories":["arrows","navigation"]},{"source":"arrow-left-right.json","name":"ArrowLeftRight","title":"Arrow Left Right","tags":["bidirectional","two-way","2-way","swap","switch","transaction","reorder","move","<-","->"],"categories":["arrows","navigation"]},{"source":"arrow-left-square.json","name":"ArrowLeftSquare","title":"Arrow Left Square","tags":["previous","back","direction","west","sign","keyboard","button","<-"],"categories":["arrows","navigation","shapes"]},{"source":"arrow-left-to-line.json","name":"ArrowLeftToLine","title":"Arrow Left To Line","tags":["previous","back","direction","west","collapse","fold","horizontal","|<-"],"categories":["arrows","navigation"]},{"source":"arrow-left.json","name":"ArrowLeft","title":"Arrow Left","tags":["previous","back","direction","west","<-"],"categories":["arrows","navigation"]},{"source":"arrow-right-circle.json","name":"ArrowRightCircle","title":"Arrow Right Circle","tags":["next","forward","direction","east","sign","turn","button","->"],"categories":["arrows","navigation","shapes","gaming"]},{"source":"arrow-right-from-line.json","name":"ArrowRightFromLine","title":"Arrow Right From Line","tags":["next","forward","direction","east","export","expand","fold","horizontal","|->"],"categories":["arrows","navigation"]},{"source":"arrow-right-left.json","name":"ArrowRightLeft","title":"Arrow Right Left","tags":["bidirectional","two-way","2-way","swap","switch","transaction","reorder","move","<-","->"],"categories":["arrows","navigation"]},{"source":"arrow-right-square.json","name":"ArrowRightSquare","title":"Arrow Right Square","tags":["next","forward","direction","west","sign","keyboard","button","->"],"categories":["arrows","navigation","shapes"]},{"source":"arrow-right-to-line.json","name":"ArrowRightToLine","title":"Arrow Right To Line","tags":["next","forward","direction","east","tab","keyboard","mac","indent","collapse","fold","horizontal","->|"],"categories":["arrows","navigation","development"]},{"source":"arrow-right.json","name":"ArrowRight","title":"Arrow Right","tags":["forward","next","direction","east","->"],"categories":["arrows","navigation"]},{"source":"arrow-up-0-1.json","name":"ArrowUp01","title":"Arrow Up 0 1","tags":["filter","sort","ascending","numerical"],"categories":["text","layout","arrows"]},{"source":"arrow-up-1-0.json","name":"ArrowUp10","title":"Arrow Up 1 0","tags":["filter","sort","descending","numerical"],"categories":["text","layout","arrows"]},{"source":"arrow-up-a-z.json","name":"ArrowUpAZ","title":"Arrow Up A Z","tags":["filter","sort","ascending","alphabetical"],"categories":["text","layout","arrows"]},{"source":"arrow-up-circle.json","name":"ArrowUpCircle","title":"Arrow Up Circle","tags":["forward","direction","north","sign","button"],"categories":["arrows","navigation","shapes","gaming"]},{"source":"arrow-up-down.json","name":"ArrowUpDown","title":"Arrow Up Down","tags":["bidirectional","two-way","2-way","swap","switch","network","mobile data","internet","sort","reorder","move"],"categories":["arrows","navigation"]},{"source":"arrow-up-from-dot.json","name":"ArrowUpFromDot","title":"Arrow Up From Dot","tags":["direction","north","step","out"],"categories":["arrows","navigation","maps"]},{"source":"arrow-up-from-line.json","name":"ArrowUpFromLine","title":"Arrow Up From Line","tags":["forward","direction","north","upload","git","version control","push","expand","fold","vertical"],"categories":["arrows","navigation","files","development"]},{"source":"arrow-up-left-from-circle.json","name":"ArrowUpLeftFromCircle","title":"Arrow Up Left From Circle","tags":["outwards","direction","north-west","diagonal","keyboard","button","escape"],"categories":["arrows","navigation","maps","development"]},{"source":"arrow-up-left-square.json","name":"ArrowUpLeftSquare","title":"Arrow Up Left Square","tags":["direction","north-west","diagonal","sign","keyboard","button"],"categories":["arrows","navigation","shapes"]},{"source":"arrow-up-left.json","name":"ArrowUpLeft","title":"Arrow Up Left","tags":["direction","north-west","diagonal"],"categories":["arrows","navigation"]},{"source":"arrow-up-narrow-wide.json","name":"ArrowUpNarrowWide","title":"Arrow Up Narrow Wide","tags":["filter","sort","ascending"],"categories":["text","layout","arrows"]},{"source":"arrow-up-right-from-circle.json","name":"ArrowUpRightFromCircle","title":"Arrow Up Right From Circle","tags":["outwards","direction","north-east","diagonal"],"categories":["arrows","navigation","maps"]},{"source":"arrow-up-right-square.json","name":"ArrowUpRightSquare","title":"Arrow Up Right Square","tags":["direction","north-east","diagonal","sign","keyboard","button","share"],"categories":["arrows","navigation","shapes","social"]},{"source":"arrow-up-right.json","name":"ArrowUpRight","title":"Arrow Up Right","tags":["direction","north-east","diagonal"],"categories":["arrows","navigation"]},{"source":"arrow-up-square.json","name":"ArrowUpSquare","title":"Arrow Up Square","tags":["forward","direction","north","sign","keyboard","button"],"categories":["arrows","navigation","shapes"]},{"source":"arrow-up-to-line.json","name":"ArrowUpToLine","title":"Arrow Up To Line","tags":["forward","direction","north","upload","collapse","fold","vertical"],"categories":["arrows","navigation","files"]},{"source":"arrow-up-wide-narrow.json","name":"ArrowUpWideNarrow","title":"Arrow Up Wide Narrow","tags":["filter","sort","descending"],"categories":["text","layout","arrows"]},{"source":"arrow-up-z-a.json","name":"ArrowUpZA","title":"Arrow Up Z A","tags":["filter","sort","descending","alphabetical","reverse"],"categories":["text","layout","arrows"]},{"source":"arrow-up.json","name":"ArrowUp","title":"Arrow Up","tags":["forward","direction","north"],"categories":["arrows","navigation"]},{"source":"arrows-up-from-line.json","name":"ArrowsUpFromLine","title":"Arrows Up From Line","tags":["direction","orientation","this way up","vertical","package","box","fragile","postage","shipping"],"categories":["arrows","transportation","mail"]},{"source":"asterisk.json","name":"Asterisk","title":"Asterisk","tags":["reference","times","multiply","multiplication","operator","code","glob pattern","wildcard","*"],"categories":["text","maths","development"]},{"source":"at-sign.json","name":"AtSign","title":"At Sign","tags":["mention","at","email","message","@"],"categories":["text","account"]},{"source":"atom.json","name":"Atom","title":"Atom","tags":["atomic","nuclear","physics","particle","element","molecule"],"categories":["science"]},{"source":"award.json","name":"Award","title":"Award","tags":["achievement","badge","rosette","prize","winner"],"categories":["account","sports","gaming"]},{"source":"axe.json","name":"Axe","title":"Axe","tags":["hatchet"],"categories":["tools","gaming"]},{"source":"axis-3d.json","name":"Axis3d","title":"Axis 3d","tags":["gizmo","coordinates"],"categories":["design"]},{"source":"baby.json","name":"Baby","title":"Baby","tags":["child","childproof","children"],"categories":["accessibility","people"]},{"source":"backpack.json","name":"Backpack","title":"Backpack","tags":["bag","hiking","travel","camping","school","childhood"],"categories":["gaming","photography","travel"]},{"source":"badge-alert.json","name":"BadgeAlert","title":"Badge Alert","tags":["check","verified","unverified","security","safety","issue"],"categories":["account","social","shapes"]},{"source":"badge-cent.json","name":"BadgeCent","title":"Badge Cent","tags":["discount","offer","sale","voucher","tag","monetization","marketing","finance","financial","exchange","transaction","payment","cents","dollar","usd","$","¢"],"categories":["shopping","money","currency","account","shapes"]},{"source":"badge-check.json","name":"BadgeCheck","title":"Badge Check","tags":["verified","check"],"categories":["account","social","shapes"]},{"source":"badge-dollar-sign.json","name":"BadgeDollarSign","title":"Badge Dollar Sign","tags":["discount","offer","sale","voucher","tag","monetization","marketing","finance","financial","exchange","transaction","payment","usd","$"],"categories":["shopping","money","currency","account","shapes"]},{"source":"badge-euro.json","name":"BadgeEuro","title":"Badge Euro","tags":["discount","offer","sale","voucher","tag","monetization","marketing","finance","financial","exchange","transaction","payment","€"],"categories":["shopping","money","currency","account","shapes"]},{"source":"badge-help.json","name":"BadgeHelp","title":"Badge Help","tags":["verified","unverified","help"],"categories":["account","accessibility","social","shapes"]},{"source":"badge-indian-rupee.json","name":"BadgeIndianRupee","title":"Badge Indian Rupee","tags":["discount","offer","sale","voucher","tag","monetization","marketing","finance","financial","exchange","transaction","payment","inr","₹"],"categories":["shopping","money","currency","account","shapes"]},{"source":"badge-info.json","name":"BadgeInfo","title":"Badge Info","tags":["verified","unverified","help"],"categories":["account","accessibility","social","shapes"]},{"source":"badge-japanese-yen.json","name":"BadgeJapaneseYen","title":"Badge Japanese Yen","tags":["discount","offer","sale","voucher","tag","monetization","marketing","finance","financial","exchange","transaction","payment","jpy","¥"],"categories":["shopping","money","currency","account","shapes"]},{"source":"badge-minus.json","name":"BadgeMinus","title":"Badge Minus","tags":["verified","unverified","delete","remove","erase"],"categories":["account","social","shapes"]},{"source":"badge-percent.json","name":"BadgePercent","title":"Badge Percent","tags":["verified","unverified","sale","discount","offer","marketing","sticker","price tag"],"categories":["account","social","money","shopping","maths","shapes"]},{"source":"badge-plus.json","name":"BadgePlus","title":"Badge Plus","tags":["verified","unverified","add","create","new"],"categories":["account","social","shapes"]},{"source":"badge-pound-sterling.json","name":"BadgePoundSterling","title":"Badge Pound Sterling","tags":["discount","offer","sale","voucher","tag","monetization","marketing","finance","financial","exchange","transaction","payment","british","gbp","£"],"categories":["shopping","money","currency","account","shapes"]},{"source":"badge-russian-ruble.json","name":"BadgeRussianRuble","title":"Badge Russian Ruble","tags":["discount","offer","sale","voucher","tag","monetization","marketing","finance","financial","exchange","transaction","payment","rub","₽"],"categories":["shopping","money","currency","account","shapes"]},{"source":"badge-swiss-franc.json","name":"BadgeSwissFranc","title":"Badge Swiss Franc","tags":["discount","offer","sale","voucher","tag","monetization","marketing","finance","financial","exchange","transaction","payment","chf","₣"],"categories":["shopping","money","currency","account","shapes"]},{"source":"badge-x.json","name":"BadgeX","title":"Badge X","tags":["verified","unverified","lost","delete","remove"],"categories":["account","social","shapes"]},{"source":"badge.json","name":"Badge","title":"Badge","tags":["check","verified","unverified"],"categories":["account","social","shapes"]},{"source":"baggage-claim.json","name":"BaggageClaim","title":"Baggage Claim","tags":["baggage","luggage","travel","cart","trolley","suitcase"],"categories":["transportation","travel"]},{"source":"ban.json","name":"Ban","title":"Ban","tags":["cancel","no","stop","forbidden","prohibited","error","incorrect","mistake","wrong","failure","circle","slash","null","void"],"categories":["account"]},{"source":"banana.json","name":"Banana","title":"Banana","tags":["fruit","food"],"categories":["food-beverage"]},{"source":"banknote.json","name":"Banknote","title":"Banknote","tags":["currency","money","payment"],"categories":["currency","money"]},{"source":"bar-chart-2.json","name":"BarChart2","title":"Bar Chart 2","tags":["statistics","diagram","graph"],"categories":["charts"]},{"source":"bar-chart-3.json","name":"BarChart3","title":"Bar Chart 3","tags":["statistics","diagram","graph"],"categories":["charts"]},{"source":"bar-chart-4.json","name":"BarChart4","title":"Bar Chart 4","tags":["statistics","diagram","graph"],"categories":["charts"]},{"source":"bar-chart-big.json","name":"BarChartBig","title":"Bar Chart Big","tags":["statistics","diagram","graph"],"categories":["charts"]},{"source":"bar-chart-horizontal-big.json","name":"BarChartHorizontalBig","title":"Bar Chart Horizontal Big","tags":["statistics","diagram","graph"],"categories":["charts"]},{"source":"bar-chart-horizontal.json","name":"BarChartHorizontal","title":"Bar Chart Horizontal","tags":["statistics","diagram","graph"],"categories":["charts"]},{"source":"bar-chart.json","name":"BarChart","title":"Bar Chart","tags":["statistics","diagram","graph"],"categories":["charts"]},{"source":"baseline.json","name":"Baseline","title":"Baseline","tags":["text","format","color"],"categories":["text"]},{"source":"bath.json","name":"Bath","title":"Bath","tags":["amenities","services","bathroom","shower"],"categories":["travel"]},{"source":"battery-charging.json","name":"BatteryCharging","title":"Battery Charging","tags":["power","electricity","accumulator","charge"],"categories":["connectivity","devices"]},{"source":"battery-full.json","name":"BatteryFull","title":"Battery Full","tags":["power","electricity","accumulator","charge"],"categories":["connectivity","devices"]},{"source":"battery-low.json","name":"BatteryLow","title":"Battery Low","tags":["power","electricity","accumulator","charge"],"categories":["connectivity","devices"]},{"source":"battery-medium.json","name":"BatteryMedium","title":"Battery Medium","tags":["power","electricity","accumulator","charge"],"categories":["connectivity","devices"]},{"source":"battery-warning.json","name":"BatteryWarning","title":"Battery Warning","tags":["power","electricity","accumulator","charge","exclamation mark"],"categories":["connectivity","devices"]},{"source":"battery.json","name":"Battery","title":"Battery","tags":["power","electricity","accumulator","charge"],"categories":["connectivity","devices"]},{"source":"beaker.json","name":"Beaker","title":"Beaker","tags":["cup","lab","chemistry","experiment","test"],"categories":["science","gaming"]},{"source":"bean-off.json","name":"BeanOff","title":"Bean Off","tags":["soy free","legume","soy","food","seed","allergy","intolerance","diet"],"categories":["food-beverage"]},{"source":"bean.json","name":"Bean","title":"Bean","tags":["legume","soy","food","seed"],"categories":["food-beverage"]},{"source":"bed-double.json","name":"BedDouble","title":"Bed Double","tags":["sleep","hotel","furniture"],"categories":["furniture"]},{"source":"bed-single.json","name":"BedSingle","title":"Bed Single","tags":["sleep","hotel","furniture"],"categories":["furniture"]},{"source":"bed.json","name":"Bed","title":"Bed","tags":["sleep","hotel","furniture"],"categories":["furniture"]},{"source":"beef.json","name":"Beef","title":"Beef","tags":["food","dish","restaurant","course","meal","meat","bbq","steak"],"categories":["food-beverage"]},{"source":"beer.json","name":"Beer","title":"Beer","tags":["alcohol","bar","beverage","brewery","drink"],"categories":["food-beverage"]},{"source":"bell-dot.json","name":"BellDot","title":"Bell Dot","tags":["alarm","notification","sound","reminder","unread"],"categories":["account","notifications"]},{"source":"bell-minus.json","name":"BellMinus","title":"Bell Minus","tags":["alarm","notification","silent","reminder","delete","remove","erase"],"categories":["notifications"]},{"source":"bell-off.json","name":"BellOff","title":"Bell Off","tags":["alarm","notification","silent","reminder"],"categories":["notifications"]},{"source":"bell-plus.json","name":"BellPlus","title":"Bell Plus","tags":["notification","silent","reminder","add","create","new"],"categories":["notifications"]},{"source":"bell-ring.json","name":"BellRing","title":"Bell Ring","tags":["alarm","notification","sound","reminder"],"categories":["notifications"]},{"source":"bell.json","name":"Bell","title":"Bell","tags":["alarm","notification","sound","reminder"],"categories":["account","notifications"]},{"source":"bike.json","name":"Bike","title":"Bike","tags":["bicycle","transport","trip"],"categories":["transportation"]},{"source":"binary.json","name":"Binary","title":"Binary","tags":["code","digits","computer","zero","one","boolean"],"categories":["text","development"]},{"source":"biohazard.json","name":"Biohazard","title":"Biohazard","tags":["fallout","waste","biology","chemistry","chemical","element"],"categories":["science"]},{"source":"bird.json","name":"Bird","title":"Bird","tags":["peace","freedom","wing","avian","tweet"],"categories":["animals"]},{"source":"bitcoin.json","name":"Bitcoin","title":"Bitcoin","tags":["currency","money","payment"],"categories":["brands","currency","development","money"]},{"source":"blinds.json","name":"Blinds","title":"Blinds","tags":["shades","screen","curtain","shutter","roller blind","window","lighting","household","home"],"categories":["home"]},{"source":"blocks.json","name":"Blocks","title":"Blocks","tags":["addon","plugin","integration","extension","package","build","stack","toys","kids","children","learning"],"categories":["development","shapes"]},{"source":"bluetooth-connected.json","name":"BluetoothConnected","title":"Bluetooth Connected","tags":["paired"],"categories":["connectivity","devices"]},{"source":"bluetooth-off.json","name":"BluetoothOff","title":"Bluetooth Off","tags":["lost"],"categories":["connectivity","devices"]},{"source":"bluetooth-searching.json","name":"BluetoothSearching","title":"Bluetooth Searching","tags":["pairing"],"categories":["connectivity","devices"]},{"source":"bluetooth.json","name":"Bluetooth","title":"Bluetooth","tags":["wireless"],"categories":["connectivity","devices"]},{"source":"bold.json","name":"Bold","title":"Bold","tags":["text","strong","format"],"categories":["text"]},{"source":"bomb.json","name":"Bomb","title":"Bomb","tags":["fatal","error","crash","blockbuster","mine","explosion","explode","explosive"],"categories":[]},{"source":"bone.json","name":"Bone","title":"Bone","tags":["health","skeleton","skull","death","pets","dog"],"categories":["animals","medical","gaming"]},{"source":"book-copy.json","name":"BookCopy","title":"Book Copy","tags":["read","dictionary","booklet","library","code","version control","git","repository","clone"],"categories":["development"]},{"source":"book-down.json","name":"BookDown","title":"Book Down","tags":["code","version control","git","repository","pull"],"categories":["development"]},{"source":"book-key.json","name":"BookKey","title":"Book Key","tags":["code","version control","git","repository","private"],"categories":["development","security"]},{"source":"book-lock.json","name":"BookLock","title":"Book Lock","tags":["code","version control","git","repository","private"],"categories":["development","security"]},{"source":"book-marked.json","name":"BookMarked","title":"Book Marked","tags":["read","dictionary","booklet","library","code","version control","git","repository"],"categories":["development"]},{"source":"book-minus.json","name":"BookMinus","title":"Book Minus","tags":["code","version control","git","repository","remove","delete"],"categories":["development"]},{"source":"book-open-check.json","name":"BookOpenCheck","title":"Book Open Check","tags":["read","library","plain language","done","todo","tick","complete","task"],"categories":["gaming","development"]},{"source":"book-open.json","name":"BookOpen","title":"Book Open","tags":["read","library"],"categories":["gaming","development"]},{"source":"book-plus.json","name":"BookPlus","title":"Book Plus","tags":["code","version control","git","repository","add"],"categories":["development"]},{"source":"book-template.json","name":"BookTemplate","title":"Book Template","tags":["read","code","version control","git","repository","dashed"],"categories":["development"]},{"source":"book-up-2.json","name":"BookUp2","title":"Book Up 2","tags":["code","version control","git","repository","push","force"],"categories":["development"]},{"source":"book-up.json","name":"BookUp","title":"Book Up","tags":["code","version control","git","repository","push"],"categories":["development"]},{"source":"book-x.json","name":"BookX","title":"Book X","tags":["code","version control","git","repository","remove","delete"],"categories":["development"]},{"source":"book.json","name":"Book","title":"Book","tags":["read","dictionary","booklet","magazine","library"],"categories":["gaming","development"]},{"source":"bookmark-check.json","name":"BookmarkCheck","title":"Bookmark Check","tags":["read","finished","complete","clip","marker","tag","task","todo"],"categories":["account"]},{"source":"bookmark-minus.json","name":"BookmarkMinus","title":"Bookmark Minus","tags":["delete","remove"],"categories":["account"]},{"source":"bookmark-plus.json","name":"BookmarkPlus","title":"Bookmark Plus","tags":["add"],"categories":["account"]},{"source":"bookmark-x.json","name":"BookmarkX","title":"Bookmark X","tags":["read","clip","marker","tag","cancel","close","delete","remove","clear"],"categories":["account"]},{"source":"bookmark.json","name":"Bookmark","title":"Bookmark","tags":["read","clip","marker","tag"],"categories":["account"]},{"source":"boom-box.json","name":"BoomBox","title":"Boom Box","tags":["radio","speakers","audio","music","sound","broadcast","live","frequency"],"categories":["devices","multimedia","social"]},{"source":"bot.json","name":"Bot","title":"Bot","tags":["robot","ai","chat","assistant"],"categories":["development","social"]},{"source":"box-select.json","name":"BoxSelect","title":"Box Select","tags":["selection","square","rectangular","marquee","tool","dashed"],"categories":["text","design"]},{"source":"box.json","name":"Box","title":"Box","tags":["cube","package"],"categories":["shapes","gaming","development"]},{"source":"boxes.json","name":"Boxes","title":"Boxes","tags":["cubes","packages","parts","group","units","collection","cluster"],"categories":["shapes","gaming","development"]},{"source":"braces.json","name":"Braces","title":"Braces","tags":["json","code","token","curly brackets","data","{","}"],"categories":["development","files"]},{"source":"brackets.json","name":"Brackets","title":"Brackets","tags":["code","token","array","list","square","[","]"],"categories":["development","files"]},{"source":"brain-circuit.json","name":"BrainCircuit","title":"Brain Circuit","tags":["mind","intellect","artificial intelligence","ai","deep learning","machine learning","computing"],"categories":["science","development"]},{"source":"brain-cog.json","name":"BrainCog","title":"Brain Cog","tags":["mind","intellect","artificial intelligence","ai","deep learning","machine learning","computing"],"categories":["science","development"]},{"source":"brain.json","name":"Brain","title":"Brain","tags":["medical","mind","intellect","cerebral","consciousness","genius","artificial intelligence","ai"],"categories":["medical","science"]},{"source":"briefcase.json","name":"Briefcase","title":"Briefcase","tags":["work","bag","baggage","folder"],"categories":["transportation"]},{"source":"bring-to-front.json","name":"BringToFront","title":"Bring To Front","tags":["bring","send","move","over","forward","front","overlap","layer","order"],"categories":["design","layout"]},{"source":"brush.json","name":"Brush","title":"Brush","tags":["draw","paint","color"],"categories":["text","design","tools"]},{"source":"bug-off.json","name":"BugOff","title":"Bug Off","tags":["debug","code","insect","kill","exterminate","pest control"],"categories":["development","animals"]},{"source":"bug-play.json","name":"BugPlay","title":"Bug Play","tags":["debug","code","insect"],"categories":["development","animals"]},{"source":"bug.json","name":"Bug","title":"Bug","tags":["issue","report","debug","code","insect"],"categories":["development","animals"]},{"source":"building-2.json","name":"Building2","title":"Building 2","tags":["business","company","enterprise","skyscraper","organisation","organization"],"categories":["account","buildings"]},{"source":"building.json","name":"Building","title":"Building","tags":["organisation","organization"],"categories":["account","buildings"]},{"source":"bus-front.json","name":"BusFront","title":"Bus Front","tags":["coach","vehicle","trip","road"],"categories":["transportation"]},{"source":"bus.json","name":"Bus","title":"Bus","tags":["bus","vehicle","transport","trip"],"categories":["transportation"]},{"source":"cable-car.json","name":"CableCar","title":"Cable Car","tags":["ski lift","winter holiday","alpine","resort","mountains"],"categories":["transportation","travel"]},{"source":"cable.json","name":"Cable","title":"Cable","tags":["cord","wire","connector","connection","link","signal","console","computer","equipment","electricity","electronics","recharging","charger","power","supply","disconnected","unplugged","plugs","interface","input","output","audio video","av","rca","scart","tv","television","optical"],"categories":["connectivity","devices","multimedia"]},{"source":"cake-slice.json","name":"CakeSlice","title":"Cake Slice","tags":["birthday","birthdate","celebration","party","surprise","gateaux","dessert","candles","wish","fondant","icing sugar","sweet","baking"],"categories":["food-beverage","social"]},{"source":"cake.json","name":"Cake","title":"Cake","tags":["birthday","birthdate","celebration","party","surprise","gateaux","dessert","fondant","icing sugar","sweet","baking"],"categories":["food-beverage","social","account"]},{"source":"calculator.json","name":"Calculator","title":"Calculator","tags":["count","calculating machine"],"categories":["maths","devices"]},{"source":"calendar-check-2.json","name":"CalendarCheck2","title":"Calendar Check 2","tags":["date","time","event","confirm","subscribe","done","todo","tick","complete","task"],"categories":["time"]},{"source":"calendar-check.json","name":"CalendarCheck","title":"Calendar Check","tags":["date","time","event","confirm","subscribe","schedule","done","todo","tick","complete","task"],"categories":["time"]},{"source":"calendar-clock.json","name":"CalendarClock","title":"Calendar Clock","tags":["date","time","event","clock"],"categories":["time"]},{"source":"calendar-days.json","name":"CalendarDays","title":"Calendar Days","tags":["date","time","event"],"categories":["time"]},{"source":"calendar-heart.json","name":"CalendarHeart","title":"Calendar Heart","tags":["date","time","event","heart","favourite","subscribe"],"categories":["time"]},{"source":"calendar-minus.json","name":"CalendarMinus","title":"Calendar Minus","tags":["date","time","event","delete","remove"],"categories":["time"]},{"source":"calendar-off.json","name":"CalendarOff","title":"Calendar Off","tags":["date","time","event","delete","remove"],"categories":["time"]},{"source":"calendar-plus.json","name":"CalendarPlus","title":"Calendar Plus","tags":["date","time","event","add","subscribe","create","new"],"categories":["time"]},{"source":"calendar-range.json","name":"CalendarRange","title":"Calendar Range","tags":["date","time","event","range","period"],"categories":["time"]},{"source":"calendar-search.json","name":"CalendarSearch","title":"Calendar Search","tags":["date","time","search","events"],"categories":["time"]},{"source":"calendar-x-2.json","name":"CalendarX2","title":"Calendar X 2","tags":["date","time","event","remove"],"categories":["time"]},{"source":"calendar-x.json","name":"CalendarX","title":"Calendar X","tags":["date","time","event","remove","busy"],"categories":["time"]},{"source":"calendar.json","name":"Calendar","title":"Calendar","tags":["date","birthdate","birthday","time","event"],"categories":["time"]},{"source":"camera-off.json","name":"CameraOff","title":"Camera Off","tags":["photo","webcam","video"],"categories":["photography","devices","communication"]},{"source":"camera.json","name":"Camera","title":"Camera","tags":["photo","webcam","video"],"categories":["photography","devices","communication"]},{"source":"candlestick-chart.json","name":"CandlestickChart","title":"Candlestick Chart","tags":["trading","trader","financial","markets","portfolio","assets","prices","value","valuation","commodities","currencies","currency","exchange","hedge fund","statistics","diagram","graph"],"categories":["charts","money"]},{"source":"candy-cane.json","name":"CandyCane","title":"Candy Cane","tags":["sugar","food","sweet","christmas","xmas"],"categories":["food-beverage"]},{"source":"candy-off.json","name":"CandyOff","title":"Candy Off","tags":["sugar free","food","sweet","allergy","intolerance","diet"],"categories":["food-beverage"]},{"source":"candy.json","name":"Candy","title":"Candy","tags":["sugar","food","sweet"],"categories":["food-beverage"]},{"source":"car-front.json","name":"CarFront","title":"Car Front","tags":["vehicle","drive","trip","journey"],"categories":["transportation"]},{"source":"car-taxi-front.json","name":"CarTaxiFront","title":"Car Taxi Front","tags":["cab","vehicle","drive","trip","journey"],"categories":["transportation"]},{"source":"car.json","name":"Car","title":"Car","tags":["vehicle","drive","trip","journey"],"categories":["transportation"]},{"source":"carrot.json","name":"Carrot","title":"Carrot","tags":["vegetable","food","eat"],"categories":["food-beverage"]},{"source":"case-lower.json","name":"CaseLower","title":"Case Lower","tags":["text","letters","characters","font","typography"],"categories":["text"]},{"source":"case-sensitive.json","name":"CaseSensitive","title":"Case Sensitive","tags":["text","letters","characters","font","typography"],"categories":["text"]},{"source":"case-upper.json","name":"CaseUpper","title":"Case Upper","tags":["text","letters","characters","font","typography"],"categories":["text"]},{"source":"cassette-tape.json","name":"CassetteTape","title":"Cassette Tape","tags":["audio","music","recording","play"],"categories":["connectivity","devices","multimedia","communication","files"]},{"source":"cast.json","name":"Cast","title":"Cast","tags":["chromecast","airplay","screen"],"categories":["devices","connectivity"]},{"source":"castle.json","name":"Castle","title":"Castle","tags":["fortress","stronghold","palace","chateau","building"],"categories":["buildings","gaming","maps"]},{"source":"cat.json","name":"Cat","title":"Cat","tags":["animal","pet","kitten","feline"],"categories":["animals"]},{"source":"check-check.json","name":"CheckCheck","title":"Check Check","tags":["done","received","double","todo","tick","complete","task"],"categories":["notifications"]},{"source":"check-circle-2.json","name":"CheckCircle2","title":"Check Circle 2","tags":["done","todo","tick","complete","task"],"categories":["notifications","shapes"]},{"source":"check-circle.json","name":"CheckCircle","title":"Check Circle","tags":["done","todo","tick","complete","task"],"categories":["notifications","shapes"]},{"source":"check-square.json","name":"CheckSquare","title":"Check Square","tags":["done","todo","tick","complete","task"],"categories":["notifications","shapes"]},{"source":"check.json","name":"Check","title":"Check","tags":["done","todo","tick","complete","task"],"categories":["notifications"]},{"source":"chef-hat.json","name":"ChefHat","title":"Chef Hat","tags":["cooking","food","kitchen","restaurant"],"categories":["food-beverage"]},{"source":"cherry.json","name":"Cherry","title":"Cherry","tags":["fruit","food"],"categories":["food-beverage"]},{"source":"chevron-down-circle.json","name":"ChevronDownCircle","title":"Chevron Down Circle","tags":["back","menu"],"categories":["arrows","navigation","shapes"]},{"source":"chevron-down-square.json","name":"ChevronDownSquare","title":"Chevron Down Square","tags":["back","menu","panel"],"categories":["arrows","navigation","shapes"]},{"source":"chevron-down.json","name":"ChevronDown","title":"Chevron Down","tags":["backwards","reverse","slow"],"categories":["arrows","navigation","gaming"]},{"source":"chevron-first.json","name":"ChevronFirst","title":"Chevron First","tags":["previous","music"],"categories":["arrows","multimedia"]},{"source":"chevron-last.json","name":"ChevronLast","title":"Chevron Last","tags":["skip","next","music"],"categories":["arrows","multimedia"]},{"source":"chevron-left-circle.json","name":"ChevronLeftCircle","title":"Chevron Left Circle","tags":["back","previous","less than","fewer","menu","<"],"categories":["arrows","navigation","shapes"]},{"source":"chevron-left-square.json","name":"ChevronLeftSquare","title":"Chevron Left Square","tags":["back","previous","less than","fewer","menu","panel","button","keyboard","<"],"categories":["arrows","navigation","shapes"]},{"source":"chevron-left.json","name":"ChevronLeft","title":"Chevron Left","tags":["back","previous","less than","fewer","menu","<"],"categories":["arrows","navigation"]},{"source":"chevron-right-circle.json","name":"ChevronRightCircle","title":"Chevron Right Circle","tags":["back","more than","greater","menu",">"],"categories":["arrows","navigation","shapes"]},{"source":"chevron-right-square.json","name":"ChevronRightSquare","title":"Chevron Right Square","tags":["forward","next","more than","greater","menu","panel","code","coding","command line","terminal","prompt","shell","console",">"],"categories":["arrows","navigation","shapes","development"]},{"source":"chevron-right.json","name":"ChevronRight","title":"Chevron Right","tags":["forward","next","more than","greater","menu","code","coding","command line","terminal","prompt","shell",">"],"categories":["arrows","navigation","maths","development"]},{"source":"chevron-up-circle.json","name":"ChevronUpCircle","title":"Chevron Up Circle","tags":["caret","ahead","menu","^"],"categories":["arrows","navigation","shapes"]},{"source":"chevron-up-square.json","name":"ChevronUpSquare","title":"Chevron Up Square","tags":["caret","keyboard","button","mac","control","ctrl","superscript","exponential","power","ahead","menu","panel","^"],"categories":["arrows","navigation","maths","shapes"]},{"source":"chevron-up.json","name":"ChevronUp","title":"Chevron Up","tags":["caret","keyboard","mac","control","ctrl","superscript","exponential","power","ahead","fast","^"],"categories":["arrows","navigation","maths","gaming"]},{"source":"chevrons-down-up.json","name":"ChevronsDownUp","title":"Chevrons Down Up","tags":["collapse","fold","vertical"],"categories":["arrows"]},{"source":"chevrons-down.json","name":"ChevronsDown","title":"Chevrons Down","tags":["backwards","reverse","slower"],"categories":["arrows","navigation","gaming"]},{"source":"chevrons-left-right.json","name":"ChevronsLeftRight","title":"Chevrons Left Right","tags":["expand","horizontal","unfold"],"categories":["arrows"]},{"source":"chevrons-left.json","name":"ChevronsLeft","title":"Chevrons Left","tags":["turn","corner"],"categories":["arrows","navigation","gaming"]},{"source":"chevrons-right-left.json","name":"ChevronsRightLeft","title":"Chevrons Right Left","tags":["collapse","fold","horizontal"],"categories":["arrows"]},{"source":"chevrons-right.json","name":"ChevronsRight","title":"Chevrons Right","tags":["turn","corner"],"categories":["arrows","navigation","gaming"]},{"source":"chevrons-up-down.json","name":"ChevronsUpDown","title":"Chevrons Up Down","tags":["expand","unfold","vertical"],"categories":["arrows"]},{"source":"chevrons-up.json","name":"ChevronsUp","title":"Chevrons Up","tags":["forward","ahead","faster","speed","boost"],"categories":["arrows","navigation","gaming"]},{"source":"chrome.json","name":"Chrome","title":"Chrome","tags":["browser","logo"],"categories":["brands"]},{"source":"church.json","name":"Church","title":"Church","tags":["temple","building"],"categories":["buildings","maps"]},{"source":"cigarette-off.json","name":"CigaretteOff","title":"Cigarette Off","tags":["smoking","no-smoking"],"categories":["travel","transportation","medical"]},{"source":"cigarette.json","name":"Cigarette","title":"Cigarette","tags":["smoking"],"categories":["travel","transportation","medical"]},{"source":"circle-dashed.json","name":"CircleDashed","title":"Circle Dashed","tags":["pending","dot","progress","issue","draft","code","coding","version control"],"categories":["development","shapes"]},{"source":"circle-dollar-sign.json","name":"CircleDollarSign","title":"Circle Dollar Sign","tags":["monetization","marketing","currency","money","payment"],"categories":["shapes","money","currency"]},{"source":"circle-dot-dashed.json","name":"CircleDotDashed","title":"Circle Dot Dashed","tags":["pending","dot","progress","issue","draft","code","coding","version control"],"categories":["development","shapes"]},{"source":"circle-dot.json","name":"CircleDot","title":"Circle Dot","tags":["pending","dot","progress","issue","code","coding","version control","choices","multiple choice","choose"],"categories":["development","shapes"]},{"source":"circle-ellipsis.json","name":"CircleEllipsis","title":"Circle Ellipsis","tags":["pending","ellipsis","progress","…","..."],"categories":["shapes"]},{"source":"circle-equal.json","name":"CircleEqual","title":"Circle Equal","tags":["calculate","shape","="],"categories":["maths","shapes"]},{"source":"circle-off.json","name":"CircleOff","title":"Circle Off","tags":["diameter","zero","Ø","nothing","null","void","cancel","ban","no","stop","forbidden","prohibited","error","incorrect","mistake","wrong","failure"],"categories":["shapes"]},{"source":"circle-slash-2.json","name":"CircleSlash2","title":"Circle Slash 2","tags":["diameter","zero","Ø","nothing","null","void","ban","maths","divide","division","half","split","/"],"categories":["shapes","maths","development"]},{"source":"circle-slash.json","name":"CircleSlash","title":"Circle Slash","tags":["diameter","zero","Ø","nothing","null","void","cancel","ban","no","stop","forbidden","prohibited","error","incorrect","mistake","wrong","failure","divide","division","or","/"],"categories":["shapes","development","maths"]},{"source":"circle.json","name":"Circle","title":"Circle","tags":["off","zero","record","shape"],"categories":["shapes"]},{"source":"circuit-board.json","name":"CircuitBoard","title":"Circuit Board","tags":["computing","electricity","electronics"],"categories":["science","development"]},{"source":"citrus.json","name":"Citrus","title":"Citrus","tags":["lemon","orange","grapefruit","fruit"],"categories":["food-beverage"]},{"source":"clapperboard.json","name":"Clapperboard","title":"Clapperboard","tags":["movie","film","video","camera","cinema","cut","action","television","tv","show","entertainment"],"categories":["multimedia"]},{"source":"clipboard-check.json","name":"ClipboardCheck","title":"Clipboard Check","tags":["copied","pasted","done","todo","tick","complete","task"],"categories":["text"]},{"source":"clipboard-copy.json","name":"ClipboardCopy","title":"Clipboard Copy","tags":["copy","paste"],"categories":["text","arrows"]},{"source":"clipboard-edit.json","name":"ClipboardEdit","title":"Clipboard Edit","tags":["edit","paste","signature"],"categories":["text"]},{"source":"clipboard-list.json","name":"ClipboardList","title":"Clipboard List","tags":["copy","paste","tasks"],"categories":["text"]},{"source":"clipboard-paste.json","name":"ClipboardPaste","title":"Clipboard Paste","tags":["copy","paste"],"categories":["text","arrows"]},{"source":"clipboard-signature.json","name":"ClipboardSignature","title":"Clipboard Signature","tags":["paste","signature"],"categories":["text","account"]},{"source":"clipboard-type.json","name":"ClipboardType","title":"Clipboard Type","tags":["paste","format","text"],"categories":["text"]},{"source":"clipboard-x.json","name":"ClipboardX","title":"Clipboard X","tags":["copy","paste","discard","remove"],"categories":["text"]},{"source":"clipboard.json","name":"Clipboard","title":"Clipboard","tags":["copy","paste"],"categories":["text"]},{"source":"clock-1.json","name":"Clock1","title":"Clock 1","tags":["time","watch","alarm"],"categories":["time"]},{"source":"clock-10.json","name":"Clock10","title":"Clock 10","tags":["time","watch","alarm"],"categories":["time"]},{"source":"clock-11.json","name":"Clock11","title":"Clock 11","tags":["time","watch","alarm"],"categories":["time"]},{"source":"clock-12.json","name":"Clock12","title":"Clock 12","tags":["time","watch","alarm","noon","midnight"],"categories":["time"]},{"source":"clock-2.json","name":"Clock2","title":"Clock 2","tags":["time","watch","alarm"],"categories":["time"]},{"source":"clock-3.json","name":"Clock3","title":"Clock 3","tags":["time","watch","alarm"],"categories":["time"]},{"source":"clock-4.json","name":"Clock4","title":"Clock 4","tags":["time","watch","alarm"],"categories":["time"]},{"source":"clock-5.json","name":"Clock5","title":"Clock 5","tags":["time","watch","alarm"],"categories":["time"]},{"source":"clock-6.json","name":"Clock6","title":"Clock 6","tags":["time","watch","alarm"],"categories":["time"]},{"source":"clock-7.json","name":"Clock7","title":"Clock 7","tags":["time","watch","alarm"],"categories":["time"]},{"source":"clock-8.json","name":"Clock8","title":"Clock 8","tags":["time","watch","alarm"],"categories":["time"]},{"source":"clock-9.json","name":"Clock9","title":"Clock 9","tags":["time","watch","alarm"],"categories":["time"]},{"source":"clock.json","name":"Clock","title":"Clock","tags":["time","watch","alarm"],"categories":["time"]},{"source":"cloud-cog.json","name":"CloudCog","title":"Cloud Cog","tags":["computing","ai","cluster","network"],"categories":["development"]},{"source":"cloud-drizzle.json","name":"CloudDrizzle","title":"Cloud Drizzle","tags":["weather","shower"],"categories":["weather"]},{"source":"cloud-fog.json","name":"CloudFog","title":"Cloud Fog","tags":["weather","mist"],"categories":["weather"]},{"source":"cloud-hail.json","name":"CloudHail","title":"Cloud Hail","tags":["weather","rainfall"],"categories":["weather"]},{"source":"cloud-lightning.json","name":"CloudLightning","title":"Cloud Lightning","tags":["weather","bolt"],"categories":["weather"]},{"source":"cloud-moon-rain.json","name":"CloudMoonRain","title":"Cloud Moon Rain","tags":["weather","partly","night","rainfall"],"categories":["weather"]},{"source":"cloud-moon.json","name":"CloudMoon","title":"Cloud Moon","tags":["weather","night"],"categories":["weather"]},{"source":"cloud-off.json","name":"CloudOff","title":"Cloud Off","tags":["disconnect"],"categories":["connectivity","weather"]},{"source":"cloud-rain-wind.json","name":"CloudRainWind","title":"Cloud Rain Wind","tags":["weather","rainfall"],"categories":["weather"]},{"source":"cloud-rain.json","name":"CloudRain","title":"Cloud Rain","tags":["weather","rainfall"],"categories":["weather"]},{"source":"cloud-snow.json","name":"CloudSnow","title":"Cloud Snow","tags":["weather","blizzard"],"categories":["weather"]},{"source":"cloud-sun-rain.json","name":"CloudSunRain","title":"Cloud Sun Rain","tags":["weather","partly","rainfall"],"categories":["weather"]},{"source":"cloud-sun.json","name":"CloudSun","title":"Cloud Sun","tags":["weather","partly"],"categories":["weather"]},{"source":"cloud.json","name":"Cloud","title":"Cloud","tags":["weather"],"categories":["weather"]},{"source":"cloudy.json","name":"Cloudy","title":"Cloudy","tags":["weather","clouds"],"categories":["weather"]},{"source":"clover.json","name":"Clover","title":"Clover","tags":["leaf","luck","plant"],"categories":["gaming"]},{"source":"club.json","name":"Club","title":"Club","tags":["shape","suit","playing","cards"],"categories":["shapes","gaming"]},{"source":"code-2.json","name":"Code2","title":"Code 2","tags":["source","programming","html","xml"],"categories":["text","development"]},{"source":"code.json","name":"Code","title":"Code","tags":["source","programming","html","xml"],"categories":["text","development"]},{"source":"codepen.json","name":"Codepen","title":"Codepen","tags":["logo"],"categories":["brands","development"]},{"source":"codesandbox.json","name":"Codesandbox","title":"Codesandbox","tags":["logo"],"categories":["brands","development"]},{"source":"coffee.json","name":"Coffee","title":"Coffee","tags":["drink","cup","mug","tea","cafe","hot","beverage"],"categories":["food-beverage"]},{"source":"cog.json","name":"Cog","title":"Cog","tags":["computing","settings","cog","edit","gear","preferences"],"categories":["account"]},{"source":"coins.json","name":"Coins","title":"Coins","tags":["money","cash","finance","gamble"],"categories":["money","gaming"]},{"source":"columns.json","name":"Columns","title":"Columns","tags":["split","parallel","vertical","horizontal"],"categories":["layout","design","text"]},{"source":"combine.json","name":"Combine","title":"Combine","tags":["cubes","packages","parts","units","collection","cluster","combine","gather","merge"],"categories":["shapes","development","files"]},{"source":"command.json","name":"Command","title":"Command","tags":["keyboard","key","mac","cmd","button"],"categories":["development"]},{"source":"compass.json","name":"Compass","title":"Compass","tags":["direction","north","east","south","west","safari","browser"],"categories":["navigation","maps","travel"]},{"source":"component.json","name":"Component","title":"Component","tags":["design","element","group","module","part","symbol"],"categories":["design","development"]},{"source":"computer.json","name":"Computer","title":"Computer","tags":["pc","chassis","codespaces","github"],"categories":["devices","development","gaming"]},{"source":"concierge-bell.json","name":"ConciergeBell","title":"Concierge Bell","tags":["reception","bell","porter"],"categories":["travel"]},{"source":"construction.json","name":"Construction","title":"Construction","tags":["roadwork","maintenance","blockade","barricade"],"categories":["development"]},{"source":"contact-2.json","name":"Contact2","title":"Contact 2","tags":["person","user"],"categories":["account"]},{"source":"contact.json","name":"Contact","title":"Contact","tags":["person","user"],"categories":["account"]},{"source":"container.json","name":"Container","title":"Container","tags":["storage","shipping","freight","supply chain","docker","environment","devops","code","coding"],"categories":["development","transportation","mail"]},{"source":"contrast.json","name":"Contrast","title":"Contrast","tags":["display","accessibility"],"categories":["photography","accessibility","design"]},{"source":"cookie.json","name":"Cookie","title":"Cookie","tags":["biscuit","privacy","legal","food"],"categories":["account","food-beverage"]},{"source":"copy-check.json","name":"CopyCheck","title":"Copy Check","tags":["clone","duplicate","done","multiple"],"categories":["text","notifications"]},{"source":"copy-minus.json","name":"CopyMinus","title":"Copy Minus","tags":["clone","duplicate","remove","delete","collapse","subtract","multiple","-"],"categories":["text","maths"]},{"source":"copy-plus.json","name":"CopyPlus","title":"Copy Plus","tags":["clone","duplicate","add","multiple","expand","+"],"categories":["text","maths"]},{"source":"copy-slash.json","name":"CopySlash","title":"Copy Slash","tags":["clone","duplicate","cancel","ban","no","stop","forbidden","prohibited","error","multiple","divide","division","split","or","/"],"categories":["text","development","maths"]},{"source":"copy-x.json","name":"CopyX","title":"Copy X","tags":["cancel","close","delete","remove","clear","multiple","multiply","multiplication","times"],"categories":["notifications","maths"]},{"source":"copy.json","name":"Copy","title":"Copy","tags":["clone","duplicate","multiple"],"categories":["text"]},{"source":"copyleft.json","name":"Copyleft","title":"Copyleft","tags":["licence"],"categories":[]},{"source":"copyright.json","name":"Copyright","title":"Copyright","tags":["licence","license"],"categories":[]},{"source":"corner-down-left.json","name":"CornerDownLeft","title":"Corner Down Left","tags":["arrow","return"],"categories":["arrows"]},{"source":"corner-down-right.json","name":"CornerDownRight","title":"Corner Down Right","tags":["arrow","indent","tab"],"categories":["arrows","text","development"]},{"source":"corner-left-down.json","name":"CornerLeftDown","title":"Corner Left Down","tags":["arrow"],"categories":["arrows"]},{"source":"corner-left-up.json","name":"CornerLeftUp","title":"Corner Left Up","tags":["arrow"],"categories":["arrows"]},{"source":"corner-right-down.json","name":"CornerRightDown","title":"Corner Right Down","tags":["arrow"],"categories":["arrows"]},{"source":"corner-right-up.json","name":"CornerRightUp","title":"Corner Right Up","tags":["arrow"],"categories":["arrows"]},{"source":"corner-up-left.json","name":"CornerUpLeft","title":"Corner Up Left","tags":["arrow"],"categories":["arrows"]},{"source":"corner-up-right.json","name":"CornerUpRight","title":"Corner Up Right","tags":["arrow"],"categories":["arrows"]},{"source":"cpu.json","name":"Cpu","title":"Cpu","tags":["processor","cores","technology","computer","chip","circuit","memory","ram","specs","gigahertz","ghz"],"categories":["devices"]},{"source":"creative-commons.json","name":"CreativeCommons","title":"Creative Commons","tags":["licence","license"],"categories":[]},{"source":"credit-card.json","name":"CreditCard","title":"Credit Card","tags":["bank","purchase","payment","cc"],"categories":["account","money"]},{"source":"croissant.json","name":"Croissant","title":"Croissant","tags":["bakery","cooking","food","pastry"],"categories":["food-beverage"]},{"source":"crop.json","name":"Crop","title":"Crop","tags":["photo","image"],"categories":["photography","design"]},{"source":"cross.json","name":"Cross","title":"Cross","tags":["healthcare","first aid"],"categories":["shapes"]},{"source":"crosshair.json","name":"Crosshair","title":"Crosshair","tags":["aim","target"],"categories":["photography"]},{"source":"crown.json","name":"Crown","title":"Crown","tags":["king","winner","favourite"],"categories":["gaming"]},{"source":"cup-soda.json","name":"CupSoda","title":"Cup Soda","tags":["beverage","cup","drink","soda","straw","water"],"categories":["food-beverage"]},{"source":"currency.json","name":"Currency","title":"Currency","tags":["finance","money"],"categories":["currency","money"]},{"source":"database-backup.json","name":"DatabaseBackup","title":"Database Backup","tags":["storage","memory","bytes","servers","backup","timemachine","rotate","arrow","left"],"categories":["devices","arrows","design","development","photography"]},{"source":"database-zap.json","name":"DatabaseZap","title":"Database Zap","tags":["cache busting","storage","memory","bytes","servers","power","crash"],"categories":["devices","development"]},{"source":"database.json","name":"Database","title":"Database","tags":["storage","memory","bytes","servers"],"categories":["devices","development"]},{"source":"delete.json","name":"Delete","title":"Delete","tags":["backspace","remove"],"categories":["text","arrows"]},{"source":"dessert.json","name":"Dessert","title":"Dessert","tags":["pudding","christmas","xmas","custard","iced bun","icing","fondant","cake","ice cream","gelato","sundae","scoop","dollop","sugar","food","sweet"],"categories":["food-beverage"]},{"source":"diamond.json","name":"Diamond","title":"Diamond","tags":["square","rectangle","oblique","rhombus","shape","suit","playing","cards"],"categories":["shapes","gaming"]},{"source":"dice-1.json","name":"Dice1","title":"Dice 1","tags":["dice","random","tabletop","1","board","game"],"categories":["gaming"]},{"source":"dice-2.json","name":"Dice2","title":"Dice 2","tags":["dice","random","tabletop","2","board","game"],"categories":["gaming"]},{"source":"dice-3.json","name":"Dice3","title":"Dice 3","tags":["dice","random","tabletop","3","board","game"],"categories":["gaming"]},{"source":"dice-4.json","name":"Dice4","title":"Dice 4","tags":["dice","random","tabletop","4","board","game"],"categories":["gaming"]},{"source":"dice-5.json","name":"Dice5","title":"Dice 5","tags":["dice","random","tabletop","5","board","game"],"categories":["gaming"]},{"source":"dice-6.json","name":"Dice6","title":"Dice 6","tags":["dice","random","tabletop","6","board","game"],"categories":["gaming"]},{"source":"dices.json","name":"Dices","title":"Dices","tags":["dice","random","tabletop","board","game"],"categories":["gaming"]},{"source":"diff.json","name":"Diff","title":"Diff","tags":["patch","difference","plus","minus","plus-minus","maths"],"categories":["development","files"]},{"source":"disc-2.json","name":"Disc2","title":"Disc 2","tags":["album","music","vinyl","record","cd","dvd","format","dj","spin","rotate","rpm"],"categories":["devices","multimedia"]},{"source":"disc-3.json","name":"Disc3","title":"Disc 3","tags":["album","music","vinyl","record","cd","dvd","format","dj","spin","rotate","rpm"],"categories":["devices","multimedia"]},{"source":"disc.json","name":"Disc","title":"Disc","tags":["album","music","cd","dvd","format","dj","spin","rotate","rpm"],"categories":["devices","multimedia"]},{"source":"divide-circle.json","name":"DivideCircle","title":"Divide Circle","tags":["calculate","maths","÷","/"],"categories":["maths","shapes"]},{"source":"divide-square.json","name":"DivideSquare","title":"Divide Square","tags":["calculate","maths","÷","/"],"categories":["maths","shapes"]},{"source":"divide.json","name":"Divide","title":"Divide","tags":["calculate","maths","division","operator","code","÷","/"],"categories":["maths","development"]},{"source":"dna-off.json","name":"DnaOff","title":"Dna Off","tags":["gene","gmo free","helix","heredity","chromosome","nucleic acid"],"categories":["medical","food-beverage"]},{"source":"dna.json","name":"Dna","title":"Dna","tags":["gene","gmo","helix","heredity","chromosome","nucleic acid"],"categories":["medical"]},{"source":"dog.json","name":"Dog","title":"Dog","tags":["animal","pet","puppy","hound","canine"],"categories":["animals"]},{"source":"dollar-sign.json","name":"DollarSign","title":"Dollar Sign","tags":["currency","money","payment"],"categories":["currency","money"]},{"source":"donut.json","name":"Donut","title":"Donut","tags":["doughnut","sprinkles","topping","fast food","junk food","snack","treat","sweet","sugar","dessert","hollow","ring"],"categories":["food-beverage"]},{"source":"door-closed.json","name":"DoorClosed","title":"Door Closed","tags":["entrance","entry","exit","ingress","egress","gate","gateway","emergency exit"],"categories":["home","travel","furniture","security"]},{"source":"door-open.json","name":"DoorOpen","title":"Door Open","tags":["entrance","entry","exit","ingress","egress","gate","gateway","emergency exit"],"categories":["home","travel","furniture","security"]},{"source":"dot.json","name":"Dot","title":"Dot","tags":["interpunct","interpoint","middot","step","punctuation","period","full stop","end","finish","final","characters","font","typography","type","center","."],"categories":["shapes","text"]},{"source":"download-cloud.json","name":"DownloadCloud","title":"Download Cloud","tags":["import"],"categories":["arrows","files"]},{"source":"download.json","name":"Download","title":"Download","tags":["import","export","save"],"categories":["arrows","files"]},{"source":"drama.json","name":"Drama","title":"Drama","tags":["drama","masks","theater","theatre","entertainment","show"],"categories":["multimedia"]},{"source":"dribbble.json","name":"Dribbble","title":"Dribbble","tags":["design","social"],"categories":["brands","social","design"]},{"source":"droplet.json","name":"Droplet","title":"Droplet","tags":["water","weather"],"categories":["weather","gaming"]},{"source":"droplets.json","name":"Droplets","title":"Droplets","tags":["water","humidity","weather"],"categories":["weather"]},{"source":"drumstick.json","name":"Drumstick","title":"Drumstick","tags":["food","chicken","meat"],"categories":["food-beverage"]},{"source":"dumbbell.json","name":"Dumbbell","title":"Dumbbell","tags":["barbell","weight","workout","gym"],"categories":["maps","sports"]},{"source":"ear-off.json","name":"EarOff","title":"Ear Off","tags":["hearing","hard of hearing","hearing loss","deafness","noise","silence","audio","accessibility"],"categories":["medical","accessibility"]},{"source":"ear.json","name":"Ear","title":"Ear","tags":["hearing","noise","audio","accessibility"],"categories":["medical","accessibility"]},{"source":"egg-fried.json","name":"EggFried","title":"Egg Fried","tags":["food","breakfast"],"categories":["food-beverage"]},{"source":"egg-off.json","name":"EggOff","title":"Egg Off","tags":["egg free","vegan","hatched","bad egg"],"categories":["food-beverage"]},{"source":"egg.json","name":"Egg","title":"Egg","tags":["bird","chicken","nest","hatch","shell","incubate","soft boiled","hard","breakfast","brunch","morning","easter"],"categories":["food-beverage","animals"]},{"source":"equal-not.json","name":"EqualNot","title":"Equal Not","tags":["calculate","off","maths","operator","code","≠"],"categories":["maths","development"]},{"source":"equal.json","name":"Equal","title":"Equal","tags":["calculate","maths","operator","assignment","code","="],"categories":["maths","development"]},{"source":"eraser.json","name":"Eraser","title":"Eraser","tags":["pencil","drawing","undo","delete","clear"],"categories":["text"]},{"source":"euro.json","name":"Euro","title":"Euro","tags":["currency","money","payment"],"categories":["currency","money"]},{"source":"expand.json","name":"Expand","title":"Expand","tags":["scale","fullscreen"],"categories":["text"]},{"source":"external-link.json","name":"ExternalLink","title":"External Link","tags":["outbound"],"categories":["text","arrows"]},{"source":"eye-off.json","name":"EyeOff","title":"Eye Off","tags":["view","watch","hide","hidden"],"categories":["accessibility","photography"]},{"source":"eye.json","name":"Eye","title":"Eye","tags":["view","watch"],"categories":["accessibility","photography"]},{"source":"facebook.json","name":"Facebook","title":"Facebook","tags":["logo","social"],"categories":["account","social","brands"]},{"source":"factory.json","name":"Factory","title":"Factory","tags":["building","business","energy","industry","manufacture","sector"],"categories":["buildings"]},{"source":"fan.json","name":"Fan","title":"Fan","tags":["air","cooler","ventilation","ventilator","blower"],"categories":["home"]},{"source":"fast-forward.json","name":"FastForward","title":"Fast Forward","tags":["music"],"categories":["multimedia","arrows"]},{"source":"feather.json","name":"Feather","title":"Feather","tags":["logo"],"categories":["gaming"]},{"source":"ferris-wheel.json","name":"FerrisWheel","title":"Ferris Wheel","tags":["big wheel","daisy wheel","observation","attraction","entertainment","amusement park","theme park","funfair"],"categories":["maps"]},{"source":"figma.json","name":"Figma","title":"Figma","tags":["logo","design","tool"],"categories":["brands","design"]},{"source":"file-archive.json","name":"FileArchive","title":"File Archive","tags":["zip","package","archive"],"categories":["files"]},{"source":"file-audio-2.json","name":"FileAudio2","title":"File Audio 2","tags":["music","audio","sound","headphones"],"categories":["files"]},{"source":"file-audio.json","name":"FileAudio","title":"File Audio","tags":["music","audio","sound","headphones"],"categories":["files"]},{"source":"file-axis-3d.json","name":"FileAxis3d","title":"File Axis 3d","tags":["model","3d","axis","coordinates"],"categories":["design","files"]},{"source":"file-badge-2.json","name":"FileBadge2","title":"File Badge 2","tags":["award","achievement","badge","rosette","prize","winner"],"categories":["files"]},{"source":"file-badge.json","name":"FileBadge","title":"File Badge","tags":["award","achievement","badge","rosette","prize","winner"],"categories":["files"]},{"source":"file-bar-chart-2.json","name":"FileBarChart2","title":"File Bar Chart 2","tags":["statistics","diagram","graph","presentation"],"categories":["files"]},{"source":"file-bar-chart.json","name":"FileBarChart","title":"File Bar Chart","tags":["statistics","diagram","graph","presentation"],"categories":["files"]},{"source":"file-box.json","name":"FileBox","title":"File Box","tags":["box","package","model"],"categories":["files"]},{"source":"file-check-2.json","name":"FileCheck2","title":"File Check 2","tags":["done","document","todo","tick","complete","task"],"categories":["files"]},{"source":"file-check.json","name":"FileCheck","title":"File Check","tags":["done","document","todo","tick","complete","task"],"categories":["files"]},{"source":"file-clock.json","name":"FileClock","title":"File Clock","tags":["history","log","clock"],"categories":["files","time"]},{"source":"file-code-2.json","name":"FileCode2","title":"File Code 2","tags":["script","document","html","xml","property list","plist"],"categories":["files","development"]},{"source":"file-code.json","name":"FileCode","title":"File Code","tags":["script","document","gist","html","xml","property list","plist"],"categories":["files","development"]},{"source":"file-cog.json","name":"FileCog","title":"File Cog","tags":["executable","settings","cog","edit","gear"],"categories":["files"]},{"source":"file-diff.json","name":"FileDiff","title":"File Diff","tags":["diff","patch"],"categories":["files","development"]},{"source":"file-digit.json","name":"FileDigit","title":"File Digit","tags":["number","document"],"categories":["files","development"]},{"source":"file-down.json","name":"FileDown","title":"File Down","tags":["download","import","export"],"categories":["files","arrows"]},{"source":"file-edit.json","name":"FileEdit","title":"File Edit","tags":["edit","signature"],"categories":["files"]},{"source":"file-heart.json","name":"FileHeart","title":"File Heart","tags":["heart","favourite","bookmark","quick link"],"categories":["files"]},{"source":"file-image.json","name":"FileImage","title":"File Image","tags":["image","graphics","photo","picture"],"categories":["files"]},{"source":"file-input.json","name":"FileInput","title":"File Input","tags":["document"],"categories":["files","arrows"]},{"source":"file-json-2.json","name":"FileJson2","title":"File Json 2","tags":["code","json","curly braces","curly brackets"],"categories":["files","development"]},{"source":"file-json.json","name":"FileJson","title":"File Json","tags":["code","json","curly braces","curly brackets"],"categories":["files","development"]},{"source":"file-key-2.json","name":"FileKey2","title":"File Key 2","tags":["key","private","public","security"],"categories":["files","security"]},{"source":"file-key.json","name":"FileKey","title":"File Key","tags":["key","private","public","security"],"categories":["files","security"]},{"source":"file-line-chart.json","name":"FileLineChart","title":"File Line Chart","tags":["statistics","diagram","graph","presentation"],"categories":["files"]},{"source":"file-lock-2.json","name":"FileLock2","title":"File Lock 2","tags":["lock","password","security"],"categories":["files","security"]},{"source":"file-lock.json","name":"FileLock","title":"File Lock","tags":["lock","password","security"],"categories":["files","security"]},{"source":"file-minus-2.json","name":"FileMinus2","title":"File Minus 2","tags":["document"],"categories":["files"]},{"source":"file-minus.json","name":"FileMinus","title":"File Minus","tags":["delete","remove","erase","document"],"categories":["files"]},{"source":"file-output.json","name":"FileOutput","title":"File Output","tags":["document"],"categories":["files","arrows"]},{"source":"file-pie-chart.json","name":"FilePieChart","title":"File Pie Chart","tags":["statistics","diagram","graph","presentation"],"categories":["files"]},{"source":"file-plus-2.json","name":"FilePlus2","title":"File Plus 2","tags":["add","create","new","document"],"categories":["files"]},{"source":"file-plus.json","name":"FilePlus","title":"File Plus","tags":["add","create","new","document"],"categories":["files"]},{"source":"file-question.json","name":"FileQuestion","title":"File Question","tags":["readme","help","question"],"categories":["files"]},{"source":"file-scan.json","name":"FileScan","title":"File Scan","tags":["scan","code","qr-code"],"categories":["files"]},{"source":"file-search-2.json","name":"FileSearch2","title":"File Search 2","tags":["lost","document","find","browser"],"categories":["files"]},{"source":"file-search.json","name":"FileSearch","title":"File Search","tags":["lost","document","find","browser"],"categories":["files"]},{"source":"file-signature.json","name":"FileSignature","title":"File Signature","tags":["edit","signature"],"categories":["files"]},{"source":"file-spreadsheet.json","name":"FileSpreadsheet","title":"File Spreadsheet","tags":["spreadsheet","sheet","table"],"categories":["files"]},{"source":"file-stack.json","name":"FileStack","title":"File Stack","tags":["versions","multiple","copy","documents","revisions","version control","history"],"categories":["files","development"]},{"source":"file-symlink.json","name":"FileSymlink","title":"File Symlink","tags":["symlink","symbolic","link"],"categories":["files"]},{"source":"file-terminal.json","name":"FileTerminal","title":"File Terminal","tags":["terminal","bash","script","executable"],"categories":["files","development"]},{"source":"file-text.json","name":"FileText","title":"File Text","tags":["data","txt","pdf","document"],"categories":["files","text"]},{"source":"file-type-2.json","name":"FileType2","title":"File Type 2","tags":["font","text","typography","type"],"categories":["files","text"]},{"source":"file-type.json","name":"FileType","title":"File Type","tags":["font","text","typography","type"],"categories":["files","text"]},{"source":"file-up.json","name":"FileUp","title":"File Up","tags":["upload","import","export"],"categories":["files","arrows"]},{"source":"file-video-2.json","name":"FileVideo2","title":"File Video 2","tags":["movie","video","film"],"categories":["files"]},{"source":"file-video.json","name":"FileVideo","title":"File Video","tags":["movie","video","film"],"categories":["files"]},{"source":"file-volume-2.json","name":"FileVolume2","title":"File Volume 2","tags":["audio","music","volume"],"categories":["files"]},{"source":"file-volume.json","name":"FileVolume","title":"File Volume","tags":["audio","music","volume"],"categories":["files"]},{"source":"file-warning.json","name":"FileWarning","title":"File Warning","tags":["hidden","warning","alert","danger","protected","exclamation mark"],"categories":["files","notifications"]},{"source":"file-x-2.json","name":"FileX2","title":"File X 2","tags":["lost","delete","remove","document"],"categories":["files"]},{"source":"file-x.json","name":"FileX","title":"File X","tags":["lost","delete","remove","document"],"categories":["files"]},{"source":"file.json","name":"File","title":"File","tags":["document"],"categories":["files"]},{"source":"files.json","name":"Files","title":"Files","tags":["multiple","copy","documents"],"categories":["files"]},{"source":"film.json","name":"Film","title":"Film","tags":["movie","video","reel","camera","cinema","entertainment"],"categories":["photography","multimedia"]},{"source":"filter-x.json","name":"FilterX","title":"Filter X","tags":["funnel","hopper"],"categories":["layout"]},{"source":"filter.json","name":"Filter","title":"Filter","tags":["funnel","hopper"],"categories":["layout"]},{"source":"fingerprint.json","name":"Fingerprint","title":"Fingerprint","tags":["2fa","authentication","biometric","identity","security"],"categories":["account","security","medical","devices"]},{"source":"fish-off.json","name":"FishOff","title":"Fish Off","tags":["food","dish","restaurant","course","meal","seafood","animal","pet","sea","marine","allergy","intolerance","diet"],"categories":["food-beverage","animals"]},{"source":"fish-symbol.json","name":"FishSymbol","title":"Fish Symbol","tags":["dish","restaurant","course","meal","seafood","pet","sea","marine"],"categories":["food-beverage","animals"]},{"source":"fish.json","name":"Fish","title":"Fish","tags":["dish","restaurant","course","meal","seafood","pet","sea","marine"],"categories":["food-beverage","animals"]},{"source":"flag-off.json","name":"FlagOff","title":"Flag Off","tags":["unflag"],"categories":["account","social"]},{"source":"flag-triangle-left.json","name":"FlagTriangleLeft","title":"Flag Triangle Left","tags":["report","timeline"],"categories":["development"]},{"source":"flag-triangle-right.json","name":"FlagTriangleRight","title":"Flag Triangle Right","tags":["report","timeline"],"categories":["development"]},{"source":"flag.json","name":"Flag","title":"Flag","tags":["report"],"categories":["account","social"]},{"source":"flame.json","name":"Flame","title":"Flame","tags":["fire","lit"],"categories":["weather","social","gaming"]},{"source":"flashlight-off.json","name":"FlashlightOff","title":"Flashlight Off","tags":["torch"],"categories":["photography","devices"]},{"source":"flashlight.json","name":"Flashlight","title":"Flashlight","tags":["torch"],"categories":["photography","devices"]},{"source":"flask-conical-off.json","name":"FlaskConicalOff","title":"Flask Conical Off","tags":["beaker","erlenmeyer","non toxic","lab","chemistry","experiment","test"],"categories":["science","gaming"]},{"source":"flask-conical.json","name":"FlaskConical","title":"Flask Conical","tags":["beaker","erlenmeyer","lab","chemistry","experiment","test"],"categories":["science","gaming"]},{"source":"flask-round.json","name":"FlaskRound","title":"Flask Round","tags":["beaker","lab","chemistry","experiment","test"],"categories":["science","gaming"]},{"source":"flip-horizontal-2.json","name":"FlipHorizontal2","title":"Flip Horizontal 2","tags":["reflect","mirror","alignment","dashed"],"categories":["design","photography"]},{"source":"flip-horizontal.json","name":"FlipHorizontal","title":"Flip Horizontal","tags":["reflect","mirror","alignment","dashed"],"categories":["design","photography"]},{"source":"flip-vertical-2.json","name":"FlipVertical2","title":"Flip Vertical 2","tags":["reflect","mirror","alignment","dashed"],"categories":["design","photography"]},{"source":"flip-vertical.json","name":"FlipVertical","title":"Flip Vertical","tags":["reflect","mirror","alignment","dashed"],"categories":["design","photography"]},{"source":"flower-2.json","name":"Flower2","title":"Flower 2","tags":["sustainability","nature","plant"],"categories":["nature","sustainability","seasons"]},{"source":"flower.json","name":"Flower","title":"Flower","tags":["sustainability","nature","plant","spring"],"categories":["nature","gaming","sustainability"]},{"source":"focus.json","name":"Focus","title":"Focus","tags":["camera","lens","photo","dashed"],"categories":["photography"]},{"source":"fold-horizontal.json","name":"FoldHorizontal","title":"Fold Horizontal","tags":["arrow","collapse","fold","vertical","dashed"],"categories":["arrows","layout"]},{"source":"fold-vertical.json","name":"FoldVertical","title":"Fold Vertical","tags":["arrow","collapse","fold","vertical","dashed"],"categories":["arrows","layout"]},{"source":"folder-archive.json","name":"FolderArchive","title":"Folder Archive","tags":["archive","zip","package"],"categories":["files"]},{"source":"folder-check.json","name":"FolderCheck","title":"Folder Check","tags":["done","directory","todo","tick","complete","task"],"categories":["files"]},{"source":"folder-clock.json","name":"FolderClock","title":"Folder Clock","tags":["history","directory","clock"],"categories":["files","time"]},{"source":"folder-closed.json","name":"FolderClosed","title":"Folder Closed","tags":["directory","closed"],"categories":["files"]},{"source":"folder-cog.json","name":"FolderCog","title":"Folder Cog","tags":["directory","settings","control","preferences","cog","edit","gear"],"categories":["files"]},{"source":"folder-dot.json","name":"FolderDot","title":"Folder Dot","tags":["directory","root","project","active","current","pinned"],"categories":["files","development"]},{"source":"folder-down.json","name":"FolderDown","title":"Folder Down","tags":["directory","download","import","export"],"categories":["files","arrows"]},{"source":"folder-edit.json","name":"FolderEdit","title":"Folder Edit","tags":["directory","edit","rename"],"categories":["files"]},{"source":"folder-git-2.json","name":"FolderGit2","title":"Folder Git 2","tags":["directory","root","project","git","repo"],"categories":["files"]},{"source":"folder-git.json","name":"FolderGit","title":"Folder Git","tags":["directory","root","project","git","repo"],"categories":["files"]},{"source":"folder-heart.json","name":"FolderHeart","title":"Folder Heart","tags":["directory","heart","favourite","bookmark","quick link"],"categories":["files"]},{"source":"folder-input.json","name":"FolderInput","title":"Folder Input","tags":["directory","import","export"],"categories":["files","arrows"]},{"source":"folder-kanban.json","name":"FolderKanban","title":"Folder Kanban","tags":["projects","manage","overview","board","tickets","issues","roadmap","plan","intentions","productivity","work","agile","code","coding","directory","project","root"],"categories":["charts","development","design","files"]},{"source":"folder-key.json","name":"FolderKey","title":"Folder Key","tags":["directory","key","private","security","protected"],"categories":["files","security"]},{"source":"folder-lock.json","name":"FolderLock","title":"Folder Lock","tags":["directory","lock","private","security","protected"],"categories":["files","security"]},{"source":"folder-minus.json","name":"FolderMinus","title":"Folder Minus","tags":["directory","remove","delete"],"categories":["files"]},{"source":"folder-open-dot.json","name":"FolderOpenDot","title":"Folder Open Dot","tags":["directory","root","project","active","current","pinned"],"categories":["files","development"]},{"source":"folder-open.json","name":"FolderOpen","title":"Folder Open","tags":["directory"],"categories":["files"]},{"source":"folder-output.json","name":"FolderOutput","title":"Folder Output","tags":["directory","import","export"],"categories":["files","arrows"]},{"source":"folder-plus.json","name":"FolderPlus","title":"Folder Plus","tags":["directory","add","create","new"],"categories":["files"]},{"source":"folder-root.json","name":"FolderRoot","title":"Folder Root","tags":["directory","root","project","git","repo"],"categories":["files","development"]},{"source":"folder-search-2.json","name":"FolderSearch2","title":"Folder Search 2","tags":["directory","search","find","lost","browser"],"categories":["files"]},{"source":"folder-search.json","name":"FolderSearch","title":"Folder Search","tags":["directory","search","find","lost","browser"],"categories":["files"]},{"source":"folder-symlink.json","name":"FolderSymlink","title":"Folder Symlink","tags":["directory","symlink","symbolic","link"],"categories":["files"]},{"source":"folder-sync.json","name":"FolderSync","title":"Folder Sync","tags":["directory","synchronize","synchronise","refresh","reconnect","transfer","backup"],"categories":["files","arrows"]},{"source":"folder-tree.json","name":"FolderTree","title":"Folder Tree","tags":["directory","tree","browser"],"categories":["files"]},{"source":"folder-up.json","name":"FolderUp","title":"Folder Up","tags":["directory","upload","import","export"],"categories":["files","arrows"]},{"source":"folder-x.json","name":"FolderX","title":"Folder X","tags":["directory","remove","delete"],"categories":["files"]},{"source":"folder.json","name":"Folder","title":"Folder","tags":["directory"],"categories":["files"]},{"source":"folders.json","name":"Folders","title":"Folders","tags":["multiple","copy","directories"],"categories":["files"]},{"source":"footprints.json","name":"Footprints","title":"Footprints","tags":["steps","walking","foot","feet","trail","shoe"],"categories":["maps"]},{"source":"forklift.json","name":"Forklift","title":"Forklift","tags":["vehicle","transport","logistics"],"categories":["transportation"]},{"source":"form-input.json","name":"FormInput","title":"Form Input","tags":["2fa","authenticate","login","field","text"],"categories":["text"]},{"source":"forward.json","name":"Forward","title":"Forward","tags":["send","share","email"],"categories":["mail"]},{"source":"frame.json","name":"Frame","title":"Frame","tags":["logo","design","tool"],"categories":["design","photography"]},{"source":"framer.json","name":"Framer","title":"Framer","tags":["logo","design","tool"],"categories":["brands","design"]},{"source":"frown.json","name":"Frown","title":"Frown","tags":["emoji","face","bad","sad","emotion"],"categories":["emoji","account"]},{"source":"fuel.json","name":"Fuel","title":"Fuel","tags":["filling-station","gas","petrol","tank"],"categories":["transportation","maps"]},{"source":"function-square.json","name":"FunctionSquare","title":"Function Square","tags":["programming","code","automation","maths"],"categories":["development","shapes","maths"]},{"source":"gallery-horizontal-end.json","name":"GalleryHorizontalEnd","title":"Gallery Horizontal End","tags":["carousel","pictures","images","scroll","swipe","album","portfolio","history","versions","backup","time machine"],"categories":["layout","design","development","photography","multimedia","files"]},{"source":"gallery-horizontal.json","name":"GalleryHorizontal","title":"Gallery Horizontal","tags":["carousel","pictures","images","scroll","swipe","album","portfolio"],"categories":["layout","design","development","photography","multimedia"]},{"source":"gallery-thumbnails.json","name":"GalleryThumbnails","title":"Gallery Thumbnails","tags":["carousel","pictures","images","album","portfolio","preview"],"categories":["layout","design","development","photography","multimedia"]},{"source":"gallery-vertical-end.json","name":"GalleryVerticalEnd","title":"Gallery Vertical End","tags":["carousel","pictures","images","scroll","swipe","album","portfolio","history","versions","backup","time machine"],"categories":["layout","design","development","photography","multimedia","files"]},{"source":"gallery-vertical.json","name":"GalleryVertical","title":"Gallery Vertical","tags":["carousel","pictures","images","scroll","swipe","album","portfolio"],"categories":["layout","design","development","photography","multimedia"]},{"source":"gamepad-2.json","name":"Gamepad2","title":"Gamepad 2","tags":["console"],"categories":["gaming","devices"]},{"source":"gamepad.json","name":"Gamepad","title":"Gamepad","tags":["console"],"categories":["gaming","devices"]},{"source":"gantt-chart-square.json","name":"GanttChartSquare","title":"Gantt Chart Square","tags":["projects","manage","overview","roadmap","plan","intentions","timeline","deadline","date","event","range","period","productivity","work","agile","code","coding","toolbar","button"],"categories":["charts","time","development","design"]},{"source":"gantt-chart.json","name":"GanttChart","title":"Gantt Chart","tags":["projects","manage","overview","roadmap","plan","intentions","timeline","deadline","date","event","range","period","productivity","work","agile","code","coding"],"categories":["charts","time","development","design"]},{"source":"gauge-circle.json","name":"GaugeCircle","title":"Gauge Circle","tags":["dashboard","dial","meter","speed","pressure","measure","level"],"categories":["account","transportation","sports","science"]},{"source":"gauge.json","name":"Gauge","title":"Gauge","tags":["dashboard","dial","meter","speed","pressure","measure","level"],"categories":["account","transportation","sports","science"]},{"source":"gavel.json","name":"Gavel","title":"Gavel","tags":["hammer","mallet"],"categories":["maps","tools"]},{"source":"gem.json","name":"Gem","title":"Gem","tags":["diamond","crystal","ruby","jewellery","price","special","present","gift","ring","wedding","proposal","marriage","rubygems"],"categories":["gaming","money","development"]},{"source":"ghost.json","name":"Ghost","title":"Ghost","tags":["pac-man","spooky"],"categories":["gaming"]},{"source":"gift.json","name":"Gift","title":"Gift","tags":["present","box","birthday","party"],"categories":["gaming","account"]},{"source":"git-branch-plus.json","name":"GitBranchPlus","title":"Git Branch Plus","tags":["add","create"],"categories":["development"]},{"source":"git-branch.json","name":"GitBranch","title":"Git Branch","tags":["code","version control"],"categories":["development"]},{"source":"git-commit.json","name":"GitCommit","title":"Git Commit","tags":["code","version control"],"categories":["development"]},{"source":"git-compare.json","name":"GitCompare","title":"Git Compare","tags":["code","version control"],"categories":["development"]},{"source":"git-fork.json","name":"GitFork","title":"Git Fork","tags":["code","version control"],"categories":["development"]},{"source":"git-merge.json","name":"GitMerge","title":"Git Merge","tags":["code","version control"],"categories":["development"]},{"source":"git-pull-request-closed.json","name":"GitPullRequestClosed","title":"Git Pull Request Closed","tags":["code","version control","rejected"],"categories":["development"]},{"source":"git-pull-request-draft.json","name":"GitPullRequestDraft","title":"Git Pull Request Draft","tags":["code","version control","draft"],"categories":["development"]},{"source":"git-pull-request.json","name":"GitPullRequest","title":"Git Pull Request","tags":["code","version control"],"categories":["development"]},{"source":"github.json","name":"Github","title":"Github","tags":["logo","version control"],"categories":["brands","development"]},{"source":"gitlab.json","name":"Gitlab","title":"Gitlab","tags":["logo","version control"],"categories":["brands","development"]},{"source":"glass-water.json","name":"GlassWater","title":"Glass Water","tags":["beverage","drink","glass","water"],"categories":["food-beverage"]},{"source":"glasses.json","name":"Glasses","title":"Glasses","tags":["glasses","spectacles"],"categories":["accessibility"]},{"source":"globe-2.json","name":"Globe2","title":"Globe 2","tags":["world","browser","language","translate"],"categories":["maps","navigation"]},{"source":"globe.json","name":"Globe","title":"Globe","tags":["world","browser","language","translate"],"categories":["maps","navigation"]},{"source":"goal.json","name":"Goal","title":"Goal","tags":["flag","bullseye"],"categories":["gaming"]},{"source":"grab.json","name":"Grab","title":"Grab","tags":["hand"],"categories":["cursors","design","layout"]},{"source":"graduation-cap.json","name":"GraduationCap","title":"Graduation Cap","tags":["school","university","learn","study"],"categories":["buildings","maps"]},{"source":"grape.json","name":"Grape","title":"Grape","tags":["fruit","wine","food"],"categories":["food-beverage"]},{"source":"grid-2x2.json","name":"Grid2x2","title":"Grid 2x2","tags":["table","rows","columns","blocks","plot","land","geometry","measure","size","width","height","distance","surface area","square meter","acre"],"categories":["text","layout","design","shapes","maths"]},{"source":"grid-3x3.json","name":"Grid3x3","title":"Grid 3x3","tags":["table","rows","columns"],"categories":["text","layout","design"]},{"source":"grip-horizontal.json","name":"GripHorizontal","title":"Grip Horizontal","tags":["grab","dots","handle","move","drag"],"categories":["layout"]},{"source":"grip-vertical.json","name":"GripVertical","title":"Grip Vertical","tags":["grab","dots","handle","move","drag"],"categories":["layout"]},{"source":"grip.json","name":"Grip","title":"Grip","tags":["grab","dots","handle","move","drag"],"categories":["layout"]},{"source":"group.json","name":"Group","title":"Group","tags":["cubes","packages","parts","units","collection","cluster","gather","dashed"],"categories":["shapes","files"]},{"source":"hammer.json","name":"Hammer","title":"Hammer","tags":["mallet"],"categories":["tools"]},{"source":"hand-metal.json","name":"HandMetal","title":"Hand Metal","tags":["rock"],"categories":["emoji","multimedia"]},{"source":"hand.json","name":"Hand","title":"Hand","tags":["wave","move","mouse","grab"],"categories":["cursors","accessibility"]},{"source":"hard-drive-download.json","name":"HardDriveDownload","title":"Hard Drive Download","tags":["computer","server","memory","data","ssd","disk","hard disk","save"],"categories":["development","devices","arrows","files"]},{"source":"hard-drive-upload.json","name":"HardDriveUpload","title":"Hard Drive Upload","tags":["computer","server","memory","data","ssd","disk","hard disk","save"],"categories":["development","devices","arrows","files"]},{"source":"hard-drive.json","name":"HardDrive","title":"Hard Drive","tags":["computer","server","memory","data","ssd","disk","hard disk"],"categories":["development","devices"]},{"source":"hard-hat.json","name":"HardHat","title":"Hard Hat","tags":["helmet","construction","safety","savety"],"categories":["tools"]},{"source":"hash.json","name":"Hash","title":"Hash","tags":["hashtag","number","pound"],"categories":["text","social"]},{"source":"haze.json","name":"Haze","title":"Haze","tags":["mist","fog"],"categories":["weather"]},{"source":"hdmi-port.json","name":"HdmiPort","title":"Hdmi Port","tags":["socket","plug","slot","controller","connector","interface","console","signal","audio","video","visual","av","data","input","output"],"categories":["devices","multimedia","gaming"]},{"source":"heading-1.json","name":"Heading1","title":"Heading 1","tags":["h1","html","markup","markdown"],"categories":["text","development"]},{"source":"heading-2.json","name":"Heading2","title":"Heading 2","tags":["h2","html","markup","markdown"],"categories":["text","development"]},{"source":"heading-3.json","name":"Heading3","title":"Heading 3","tags":["h3","html","markup","markdown"],"categories":["text","development"]},{"source":"heading-4.json","name":"Heading4","title":"Heading 4","tags":["h4","html","markup","markdown"],"categories":["text","development"]},{"source":"heading-5.json","name":"Heading5","title":"Heading 5","tags":["h5","html","markup","markdown"],"categories":["text","development"]},{"source":"heading-6.json","name":"Heading6","title":"Heading 6","tags":["h6","html","markup","markdown"],"categories":["text","development"]},{"source":"heading.json","name":"Heading","title":"Heading","tags":["h1","html","markup","markdown"],"categories":["text","development"]},{"source":"headphones.json","name":"Headphones","title":"Headphones","tags":["music","audio","sound"],"categories":["multimedia","connectivity","devices","files","gaming"]},{"source":"heart-crack.json","name":"HeartCrack","title":"Heart Crack","tags":["heartbreak","sadness","emotion"],"categories":["emoji"]},{"source":"heart-handshake.json","name":"HeartHandshake","title":"Heart Handshake","tags":["agreement","charity","help","deal","terms","emotion","together","handshake"],"categories":["emoji","account","security"]},{"source":"heart-off.json","name":"HeartOff","title":"Heart Off","tags":["unlike","dislike","hate","emotion"],"categories":["social","multimedia"]},{"source":"heart-pulse.json","name":"HeartPulse","title":"Heart Pulse","tags":["heartbeat","pulse","health","medical","blood pressure","cardiac","systole","diastole"],"categories":["medical"]},{"source":"heart.json","name":"Heart","title":"Heart","tags":["like","love","emotion","suit","playing","cards"],"categories":["medical","social","multimedia","emoji","gaming","shapes"]},{"source":"help-circle.json","name":"HelpCircle","title":"Help Circle","tags":["question mark"],"categories":["accessibility","text","shapes","notifications"]},{"source":"helping-hand.json","name":"HelpingHand","title":"Helping Hand","tags":["agreement","help","proposal","charity","begging","terms"],"categories":["emoji"]},{"source":"hexagon.json","name":"Hexagon","title":"Hexagon","tags":["shape","node.js","logo"],"categories":["shapes","brands","development"]},{"source":"highlighter.json","name":"Highlighter","title":"Highlighter","tags":["mark","text"],"categories":["text","design"]},{"source":"history.json","name":"History","title":"History","tags":["time","redo","undo","rewind","timeline","version","time machine","backup","rotate","ccw"],"categories":["arrows","time"]},{"source":"home.json","name":"Home","title":"Home","tags":["house","living"],"categories":["account"]},{"source":"hop-off.json","name":"HopOff","title":"Hop Off","tags":["beer","brewery","drink","hop free","allergy","intolerance","diet"],"categories":["food-beverage"]},{"source":"hop.json","name":"Hop","title":"Hop","tags":["beer","brewery","drink"],"categories":["food-beverage"]},{"source":"hotel.json","name":"Hotel","title":"Hotel","tags":["building","hostel","motel","inn"],"categories":["buildings","maps","travel"]},{"source":"hourglass.json","name":"Hourglass","title":"Hourglass","tags":["timer","time","sandglass"],"categories":["time","gaming"]},{"source":"ice-cream-2.json","name":"IceCream2","title":"Ice Cream 2","tags":["gelato","food","dessert","dish","restaurant","course","meal"],"categories":["food-beverage"]},{"source":"ice-cream.json","name":"IceCream","title":"Ice Cream","tags":["gelato","food"],"categories":["food-beverage"]},{"source":"image-minus.json","name":"ImageMinus","title":"Image Minus","tags":["remove","delete"],"categories":["photography","multimedia","files"]},{"source":"image-off.json","name":"ImageOff","title":"Image Off","tags":["picture","photo"],"categories":["photography","multimedia","files"]},{"source":"image-plus.json","name":"ImagePlus","title":"Image Plus","tags":["add","create"],"categories":["photography","multimedia","files"]},{"source":"image.json","name":"Image","title":"Image","tags":["picture","photo"],"categories":["photography","text","multimedia","files"]},{"source":"import.json","name":"Import","title":"Import","tags":["save"],"categories":["arrows","files"]},{"source":"inbox.json","name":"Inbox","title":"Inbox","tags":["email"],"categories":["account","mail"]},{"source":"indent.json","name":"Indent","title":"Indent","tags":["text","tab"],"categories":["text","development"]},{"source":"indian-rupee.json","name":"IndianRupee","title":"Indian Rupee","tags":["currency","money","payment"],"categories":["currency","money"]},{"source":"infinity.json","name":"Infinity","title":"Infinity","tags":["unlimited","forever","loop","maths"],"categories":["multimedia"]},{"source":"info.json","name":"Info","title":"Info","tags":["help"],"categories":["accessibility","notifications"]},{"source":"instagram.json","name":"Instagram","title":"Instagram","tags":["logo","camera","social"],"categories":["brands","social","photography"]},{"source":"italic.json","name":"Italic","title":"Italic","tags":["oblique","text","format"],"categories":["text"]},{"source":"iteration-ccw.json","name":"IterationCcw","title":"Iteration Ccw","tags":["arrow","right"],"categories":["arrows","design"]},{"source":"iteration-cw.json","name":"IterationCw","title":"Iteration Cw","tags":["arrow","left"],"categories":["arrows","design"]},{"source":"japanese-yen.json","name":"JapaneseYen","title":"Japanese Yen","tags":["currency","money","payment"],"categories":["currency","money"]},{"source":"joystick.json","name":"Joystick","title":"Joystick","tags":["game","console","control stick"],"categories":["gaming","devices"]},{"source":"kanban-square-dashed.json","name":"KanbanSquareDashed","title":"Kanban Square Dashed","tags":["projects","manage","overview","board","tickets","issues","roadmap","plan","intentions","productivity","work","agile","draft","template","boilerplate","code","coding"],"categories":["charts","development","design"]},{"source":"kanban-square.json","name":"KanbanSquare","title":"Kanban Square","tags":["projects","manage","overview","board","tickets","issues","roadmap","plan","intentions","productivity","work","agile","code","coding","toolbar","button"],"categories":["charts","development","design"]},{"source":"kanban.json","name":"Kanban","title":"Kanban","tags":["projects","manage","overview","board","tickets","issues","roadmap","plan","intentions","productivity","work","agile","code","coding"],"categories":["charts","development","design"]},{"source":"key-round.json","name":"KeyRound","title":"Key Round","tags":["password","login","authentication","secure","unlock"],"categories":["security","account"]},{"source":"key-square.json","name":"KeySquare","title":"Key Square","tags":["password","login","authentication","secure","unlock","car key"],"categories":["security","account"]},{"source":"key.json","name":"Key","title":"Key","tags":["password","login","authentication","secure","unlock","keychain","key ring","fob"],"categories":["security","account"]},{"source":"keyboard.json","name":"Keyboard","title":"Keyboard","tags":["layout","spell","settings","mouse"],"categories":["text","devices","development"]},{"source":"lamp-ceiling.json","name":"LampCeiling","title":"Lamp Ceiling","tags":["lighting","household","home","furniture"],"categories":["furniture"]},{"source":"lamp-desk.json","name":"LampDesk","title":"Lamp Desk","tags":["lighting","household","office","desk","home","furniture"],"categories":["furniture"]},{"source":"lamp-floor.json","name":"LampFloor","title":"Lamp Floor","tags":["lighting","household","floor","home","furniture"],"categories":["furniture"]},{"source":"lamp-wall-down.json","name":"LampWallDown","title":"Lamp Wall Down","tags":["lighting","household","wall","home","furniture"],"categories":["furniture"]},{"source":"lamp-wall-up.json","name":"LampWallUp","title":"Lamp Wall Up","tags":["lighting","household","wall","home","furniture"],"categories":["furniture"]},{"source":"lamp.json","name":"Lamp","title":"Lamp","tags":["lighting","household","home","furniture"],"categories":["furniture"]},{"source":"landmark.json","name":"Landmark","title":"Landmark","tags":["bank","building","capitol","finance","money"],"categories":["money","maps","buildings"]},{"source":"languages.json","name":"Languages","title":"Languages","tags":["translate"],"categories":["text"]},{"source":"laptop-2.json","name":"Laptop2","title":"Laptop 2","tags":["computer","screen","remote"],"categories":["devices"]},{"source":"laptop.json","name":"Laptop","title":"Laptop","tags":["computer","screen","remote"],"categories":["devices"]},{"source":"lasso-select.json","name":"LassoSelect","title":"Lasso Select","tags":["select","cursor"],"categories":["arrows","design","cursors"]},{"source":"lasso.json","name":"Lasso","title":"Lasso","tags":["select","cursor"],"categories":["design","cursors"]},{"source":"laugh.json","name":"Laugh","title":"Laugh","tags":["emoji","face","happy","good","emotion"],"categories":["emoji"]},{"source":"layers.json","name":"Layers","title":"Layers","tags":["stack","pages"],"categories":["design","layout"]},{"source":"layout-dashboard.json","name":"LayoutDashboard","title":"Layout Dashboard","tags":["masonry","brick"],"categories":["design","layout"]},{"source":"layout-grid.json","name":"LayoutGrid","title":"Layout Grid","tags":["app","home","start"],"categories":["design","layout"]},{"source":"layout-list.json","name":"LayoutList","title":"Layout List","tags":["todo","tasks","items","pending","image","photo"],"categories":["design","layout","photography","text"]},{"source":"layout-panel-left.json","name":"LayoutPanelLeft","title":"Layout Panel Left","tags":["app","home","start","grid"],"categories":["design","layout"]},{"source":"layout-panel-top.json","name":"LayoutPanelTop","title":"Layout Panel Top","tags":["window","webpage","block","section","grid","template","structure"],"categories":["layout"]},{"source":"layout-template.json","name":"LayoutTemplate","title":"Layout Template","tags":["window","webpage","block","section"],"categories":["layout"]},{"source":"layout.json","name":"Layout","title":"Layout","tags":["window","webpage"],"categories":["design","layout"]},{"source":"leaf.json","name":"Leaf","title":"Leaf","tags":["sustainability","nature","energy","plant","autumn"],"categories":["nature","sustainability","seasons"]},{"source":"leafy-green.json","name":"LeafyGreen","title":"Leafy Green","tags":["salad","lettuce","vegetable","chard","cabbage","bok choy"],"categories":["food-beverage","emoji"]},{"source":"library.json","name":"Library","title":"Library","tags":["book","music","album"],"categories":["photography","multimedia"]},{"source":"life-buoy.json","name":"LifeBuoy","title":"Life Buoy","tags":["preserver","life belt","lifesaver","help","rescue","ship","ring","raft","inflatable","wheel","donut"],"categories":["accessibility","medical"]},{"source":"ligature.json","name":"Ligature","title":"Ligature","tags":["text","font","typography","alternates","alternatives"],"categories":["text"]},{"source":"lightbulb-off.json","name":"LightbulbOff","title":"Lightbulb Off","tags":["lights"],"categories":["photography"]},{"source":"lightbulb.json","name":"Lightbulb","title":"Lightbulb","tags":["idea","bright","lights"],"categories":["photography"]},{"source":"line-chart.json","name":"LineChart","title":"Line Chart","tags":["statistics","diagram","graph"],"categories":["charts"]},{"source":"link-2-off.json","name":"Link2Off","title":"Link 2 Off","tags":["unchain","chain"],"categories":["text"]},{"source":"link-2.json","name":"Link2","title":"Link 2","tags":["chain","url"],"categories":["text","account"]},{"source":"link.json","name":"Link","title":"Link","tags":["chain","url"],"categories":["text","account"]},{"source":"linkedin.json","name":"Linkedin","title":"Linkedin","tags":["logo","social media","social"],"categories":["account","social","brands"]},{"source":"list-checks.json","name":"ListChecks","title":"List Checks","tags":["todo","done","check","tick","complete","tasks","items","pending"],"categories":["text"]},{"source":"list-end.json","name":"ListEnd","title":"List End","tags":["queue","bottom","end","playlist"],"categories":["multimedia","text"]},{"source":"list-filter.json","name":"ListFilter","title":"List Filter","tags":["options"],"categories":["text"]},{"source":"list-minus.json","name":"ListMinus","title":"List Minus","tags":["playlist","remove","song","subtract","delete","unqueue"],"categories":["multimedia","text"]},{"source":"list-music.json","name":"ListMusic","title":"List Music","tags":["playlist","queue","music","audio","playback"],"categories":["multimedia"]},{"source":"list-ordered.json","name":"ListOrdered","title":"List Ordered","tags":["number","order","queue"],"categories":["text"]},{"source":"list-plus.json","name":"ListPlus","title":"List Plus","tags":["playlist","add","song","track","new"],"categories":["multimedia","text"]},{"source":"list-restart.json","name":"ListRestart","title":"List Restart","tags":["reset","refresh","reload","playlist","replay"],"categories":["multimedia","text"]},{"source":"list-start.json","name":"ListStart","title":"List Start","tags":["queue","top","start","next","playlist"],"categories":["multimedia","text"]},{"source":"list-todo.json","name":"ListTodo","title":"List Todo","tags":["todo","done","check","tick","complete","tasks","items","pending"],"categories":["text"]},{"source":"list-tree.json","name":"ListTree","title":"List Tree","tags":["tree","browser"],"categories":["files","text","layout"]},{"source":"list-video.json","name":"ListVideo","title":"List Video","tags":["playlist","video","playback"],"categories":["multimedia"]},{"source":"list-x.json","name":"ListX","title":"List X","tags":["playlist","subtract","remove","delete","unqueue"],"categories":["multimedia","text"]},{"source":"list.json","name":"List","title":"List","tags":["options"],"categories":["text"]},{"source":"loader-2.json","name":"Loader2","title":"Loader 2","tags":["load"],"categories":["multimedia","layout"]},{"source":"loader.json","name":"Loader","title":"Loader","tags":["load","wait"],"categories":["multimedia","layout"]},{"source":"locate-fixed.json","name":"LocateFixed","title":"Locate Fixed","tags":["map","gps","location","cross"],"categories":["navigation","maps"]},{"source":"locate-off.json","name":"LocateOff","title":"Locate Off","tags":["map","gps","location","cross"],"categories":["navigation","maps"]},{"source":"locate.json","name":"Locate","title":"Locate","tags":["map","gps","location","cross"],"categories":["navigation","maps"]},{"source":"lock.json","name":"Lock","title":"Lock","tags":["security","password","secure","admin"],"categories":["security"]},{"source":"log-in.json","name":"LogIn","title":"Log In","tags":["sign in","arrow","enter","auth"],"categories":["arrows","account"]},{"source":"log-out.json","name":"LogOut","title":"Log Out","tags":["sign out","arrow","exit","auth"],"categories":["arrows","account"]},{"source":"lollipop.json","name":"Lollipop","title":"Lollipop","tags":["lolly","candy","sugar","food","sweet","dessert","spiral"],"categories":["food-beverage"]},{"source":"luggage.json","name":"Luggage","title":"Luggage","tags":["baggage","luggage","travel","suitcase"],"categories":["travel","transportation"]},{"source":"m-square.json","name":"MSquare","title":"M Square","tags":["metro","subway","underground","track","line"],"categories":["transportation","maps","navigation"]},{"source":"magnet.json","name":"Magnet","title":"Magnet","tags":["horseshoe","lock","science","snap"],"categories":["design"]},{"source":"mail-check.json","name":"MailCheck","title":"Mail Check","tags":["email","message","letter","subscribe","delivered","success","read","done","todo","tick","complete","task"],"categories":["mail"]},{"source":"mail-minus.json","name":"MailMinus","title":"Mail Minus","tags":["email","message","letter","remove","delete"],"categories":["mail"]},{"source":"mail-open.json","name":"MailOpen","title":"Mail Open","tags":["email","message","letter","read"],"categories":["mail"]},{"source":"mail-plus.json","name":"MailPlus","title":"Mail Plus","tags":["email","message","letter","add","create","new","compose"],"categories":["mail"]},{"source":"mail-question.json","name":"MailQuestion","title":"Mail Question","tags":["email","message","letter","delivery","undelivered"],"categories":["mail"]},{"source":"mail-search.json","name":"MailSearch","title":"Mail Search","tags":["email","message","letter","search"],"categories":["mail"]},{"source":"mail-warning.json","name":"MailWarning","title":"Mail Warning","tags":["email","message","letter","delivery error","exclamation mark"],"categories":["mail"]},{"source":"mail-x.json","name":"MailX","title":"Mail X","tags":["email","message","letter","remove","delete"],"categories":["mail"]},{"source":"mail.json","name":"Mail","title":"Mail","tags":["email","message","letter","unread"],"categories":["text","account","mail"]},{"source":"mailbox.json","name":"Mailbox","title":"Mailbox","tags":["emails","messages","letters","mailing list","newsletter"],"categories":["mail"]},{"source":"mails.json","name":"Mails","title":"Mails","tags":["emails","messages","letters","multiple","mailing list","newsletter","copy"],"categories":["mail"]},{"source":"map-pin-off.json","name":"MapPinOff","title":"Map Pin Off","tags":["location","waypoint","marker","remove"],"categories":["maps","navigation","travel"]},{"source":"map-pin.json","name":"MapPin","title":"Map Pin","tags":["location","waypoint","marker","drop"],"categories":["maps","navigation","travel","account"]},{"source":"map.json","name":"Map","title":"Map","tags":["location","navigation","travel"],"categories":["text","maps"]},{"source":"martini.json","name":"Martini","title":"Martini","tags":["cocktail","alcohol","beverage","bar","drink","glass"],"categories":["food-beverage"]},{"source":"maximize-2.json","name":"Maximize2","title":"Maximize 2","tags":["fullscreen","arrows","expand"],"categories":["arrows","layout","design"]},{"source":"maximize.json","name":"Maximize","title":"Maximize","tags":["fullscreen","expand","dashed"],"categories":["layout","design"]},{"source":"medal.json","name":"Medal","title":"Medal","tags":["prize","sports","winner","trophy","award","achievement"],"categories":["sports","gaming"]},{"source":"megaphone-off.json","name":"MegaphoneOff","title":"Megaphone Off","tags":["advertisement","attention","alert","notification","disable","silent"],"categories":["multimedia","notifications"]},{"source":"megaphone.json","name":"Megaphone","title":"Megaphone","tags":["advertisement","attention","alert","notification"],"categories":["multimedia","notifications"]},{"source":"meh.json","name":"Meh","title":"Meh","tags":["emoji","face","neutral","emotion"],"categories":["emoji"]},{"source":"memory-stick.json","name":"MemoryStick","title":"Memory Stick","tags":["ram","random access","technology","computer","chip","circuit","specs","capacity","gigabytes","gb"],"categories":["devices","development","gaming"]},{"source":"menu-square.json","name":"MenuSquare","title":"Menu Square","tags":["bars","navigation","hamburger","options","menu bar","panel"],"categories":["layout","account"]},{"source":"menu.json","name":"Menu","title":"Menu","tags":["bars","navigation","hamburger","options"],"categories":["layout","account"]},{"source":"merge.json","name":"Merge","title":"Merge","tags":["combine","join","unite"],"categories":["development","arrows"]},{"source":"message-circle.json","name":"MessageCircle","title":"Message Circle","tags":["comment","chat","conversation"],"categories":["account"]},{"source":"message-square-dashed.json","name":"MessageSquareDashed","title":"Message Square Dashed","tags":["comment","chat","conversation","draft"],"categories":["account"]},{"source":"message-square-plus.json","name":"MessageSquarePlus","title":"Message Square Plus","tags":["comment","chat","conversation","add","feedback"],"categories":["account"]},{"source":"message-square.json","name":"MessageSquare","title":"Message Square","tags":["comment","chat","conversation"],"categories":["account"]},{"source":"messages-square.json","name":"MessagesSquare","title":"Messages Square","tags":["comment","chat","conversation","copy","multiple"],"categories":["account"]},{"source":"mic-2.json","name":"Mic2","title":"Mic 2","tags":["lyrics","voice","listen","sound","music","radio","podcast","karaoke","singing","microphone"],"categories":["devices","multimedia"]},{"source":"mic-off.json","name":"MicOff","title":"Mic Off","tags":["record","sound","mute","microphone"],"categories":["devices","communication","connectivity","multimedia"]},{"source":"mic.json","name":"Mic","title":"Mic","tags":["record","sound","listen","radio","podcast","microphone"],"categories":["devices","communication","connectivity","multimedia"]},{"source":"microscope.json","name":"Microscope","title":"Microscope","tags":["medical","education","science","imaging","research"],"categories":["science","medical"]},{"source":"microwave.json","name":"Microwave","title":"Microwave","tags":["oven","cooker","toaster oven","bake"],"categories":["food-beverage","home"]},{"source":"milestone.json","name":"Milestone","title":"Milestone","tags":["sign","signpost","direction","version control"],"categories":["arrows","navigation","development","gaming"]},{"source":"milk-off.json","name":"MilkOff","title":"Milk Off","tags":["lactose free","bottle","beverage","drink","water","allergy","intolerance","diet"],"categories":["food-beverage"]},{"source":"milk.json","name":"Milk","title":"Milk","tags":["lactose","bottle","beverage","drink","water","diet"],"categories":["food-beverage"]},{"source":"minimize-2.json","name":"Minimize2","title":"Minimize 2","tags":["exit fullscreen","arrows","close","shrink"],"categories":["arrows","layout","design"]},{"source":"minimize.json","name":"Minimize","title":"Minimize","tags":["exit fullscreen","close","shrink"],"categories":["layout","design"]},{"source":"minus-circle.json","name":"MinusCircle","title":"Minus Circle","tags":["subtract","remove","decrease","reduce","calculate","line","operator","code","coding","minimum","downgrade","-"],"categories":["maths","shapes"]},{"source":"minus-square.json","name":"MinusSquare","title":"Minus Square","tags":["subtract","remove","decrease","reduce","calculator","button","keyboard","line","divider","separator","horizontal rule","hr","html","markup","markdown","---","toolbar","operator","code","coding","minimum","downgrade"],"categories":["maths","development","text","tools","devices","shapes"]},{"source":"minus.json","name":"Minus","title":"Minus","tags":["subtract","remove","decrease","decrement","reduce","negative","calculate","line","divider","separator","horizontal rule","hr","html","markup","markdown","---","toolbar","operator","code","coding","minimum","downgrade"],"categories":["maths","development","text","tools","shapes"]},{"source":"monitor-check.json","name":"MonitorCheck","title":"Monitor Check","tags":["tv","screen","display","desktop","running","active","virtual machine","vm"],"categories":["connectivity","devices","development"]},{"source":"monitor-dot.json","name":"MonitorDot","title":"Monitor Dot","tags":["tv","screen","display","desktop","running","active","virtual machine","vm"],"categories":["connectivity","devices","development"]},{"source":"monitor-down.json","name":"MonitorDown","title":"Monitor Down","tags":["tv","screen","display","desktop","download"],"categories":["connectivity","devices"]},{"source":"monitor-off.json","name":"MonitorOff","title":"Monitor Off","tags":["share"],"categories":["connectivity","devices"]},{"source":"monitor-pause.json","name":"MonitorPause","title":"Monitor Pause","tags":["tv","screen","display","desktop","video","movie","film","suspend","hibernate","boot","virtual machine","vm"],"categories":["connectivity","devices","multimedia","development"]},{"source":"monitor-play.json","name":"MonitorPlay","title":"Monitor Play","tags":["tv","screen","display","desktop","video","movie","film","running","start","boot","virtual machine","vm"],"categories":["connectivity","devices","multimedia","development"]},{"source":"monitor-smartphone.json","name":"MonitorSmartphone","title":"Monitor Smartphone","tags":["smartphone","phone","cellphone","device","mobile","desktop","monitor","responsive","screens"],"categories":["connectivity","devices"]},{"source":"monitor-speaker.json","name":"MonitorSpeaker","title":"Monitor Speaker","tags":["devices","connect","cast"],"categories":["connectivity","devices"]},{"source":"monitor-stop.json","name":"MonitorStop","title":"Monitor Stop","tags":["tv","screen","display","desktop","video","movie","film","stop","shutdown","virtual machine","vm"],"categories":["connectivity","devices","multimedia","development"]},{"source":"monitor-up.json","name":"MonitorUp","title":"Monitor Up","tags":["tv","screen","display","upload","connect","remote","screen share"],"categories":["connectivity","devices"]},{"source":"monitor-x.json","name":"MonitorX","title":"Monitor X","tags":["tv","screen","display","desktop","virtual machine","vm","close","stop","suspend","remove","delete"],"categories":["connectivity","devices","development"]},{"source":"monitor.json","name":"Monitor","title":"Monitor","tags":["tv","screen","display","virtual machine","vm"],"categories":["connectivity","devices","development"]},{"source":"moon-star.json","name":"MoonStar","title":"Moon Star","tags":["dark","night","star"],"categories":["accessibility","weather"]},{"source":"moon.json","name":"Moon","title":"Moon","tags":["dark","night"],"categories":["accessibility"]},{"source":"more-horizontal.json","name":"MoreHorizontal","title":"More Horizontal","tags":["ellipsis","menu","options","operator","code","spread","rest","…","..."],"categories":["layout","development"]},{"source":"more-vertical.json","name":"MoreVertical","title":"More Vertical","tags":["ellipsis","menu","options"],"categories":["layout"]},{"source":"mountain-snow.json","name":"MountainSnow","title":"Mountain Snow","tags":["alpine","climb","snow"],"categories":["nature"]},{"source":"mountain.json","name":"Mountain","title":"Mountain","tags":["climb","hike","rock"],"categories":["nature","gaming"]},{"source":"mouse-pointer-2.json","name":"MousePointer2","title":"Mouse Pointer 2","tags":["arrow","cursor","click"],"categories":["arrows","cursors"]},{"source":"mouse-pointer-click.json","name":"MousePointerClick","title":"Mouse Pointer Click","tags":["arrow","cursor","click"],"categories":["arrows","cursors"]},{"source":"mouse-pointer-square-dashed.json","name":"MousePointerSquareDashed","title":"Mouse Pointer Square Dashed","tags":["inspector","element","mouse","click","pointer","box","browser","selector","target","dom","node"],"categories":["arrows","cursors","development","tools"]},{"source":"mouse-pointer-square.json","name":"MousePointerSquare","title":"Mouse Pointer Square","tags":["inspector","element","mouse","click","pointer","box","browser","selector","target","dom","node"],"categories":["arrows","cursors","development","tools"]},{"source":"mouse-pointer.json","name":"MousePointer","title":"Mouse Pointer","tags":["arrow","cursor","click"],"categories":["arrows","cursors"]},{"source":"mouse.json","name":"Mouse","title":"Mouse","tags":["device","scroll","click"],"categories":["devices"]},{"source":"move-3d.json","name":"Move3d","title":"Move 3d","tags":["arrows","axis","gizmo","coordinates","transform","translate"],"categories":["design"]},{"source":"move-diagonal-2.json","name":"MoveDiagonal2","title":"Move Diagonal 2","tags":["double","arrow"],"categories":["arrows","cursors"]},{"source":"move-diagonal.json","name":"MoveDiagonal","title":"Move Diagonal","tags":["double","arrow"],"categories":["arrows","cursors"]},{"source":"move-down-left.json","name":"MoveDownLeft","title":"Move Down Left","tags":["arrow","direction"],"categories":["arrows"]},{"source":"move-down-right.json","name":"MoveDownRight","title":"Move Down Right","tags":["arrow","direction"],"categories":["arrows"]},{"source":"move-down.json","name":"MoveDown","title":"Move Down","tags":["arrow","direction","downwards","south"],"categories":["arrows"]},{"source":"move-horizontal.json","name":"MoveHorizontal","title":"Move Horizontal","tags":["double","arrow"],"categories":["arrows","cursors"]},{"source":"move-left.json","name":"MoveLeft","title":"Move Left","tags":["arrow","direction","back","west"],"categories":["arrows"]},{"source":"move-right.json","name":"MoveRight","title":"Move Right","tags":["arrow","direction","trend flat","east"],"categories":["arrows"]},{"source":"move-up-left.json","name":"MoveUpLeft","title":"Move Up Left","tags":["arrow","direction"],"categories":["arrows"]},{"source":"move-up-right.json","name":"MoveUpRight","title":"Move Up Right","tags":["arrow","direction"],"categories":["arrows"]},{"source":"move-up.json","name":"MoveUp","title":"Move Up","tags":["arrow","direction","upwards","north"],"categories":["arrows"]},{"source":"move-vertical.json","name":"MoveVertical","title":"Move Vertical","tags":["double","arrow"],"categories":["arrows","cursors"]},{"source":"move.json","name":"Move","title":"Move","tags":["arrows"],"categories":["arrows","cursors"]},{"source":"music-2.json","name":"Music2","title":"Music 2","tags":["quaver","eighth note","note"],"categories":["multimedia","files"]},{"source":"music-3.json","name":"Music3","title":"Music 3","tags":["crotchet","minim","quarter note","half note","note"],"categories":["multimedia","files"]},{"source":"music-4.json","name":"Music4","title":"Music 4","tags":["semiquaver","sixteenth note","note"],"categories":["multimedia","files"]},{"source":"music.json","name":"Music","title":"Music","tags":["note","quaver","eighth note"],"categories":["multimedia","files"]},{"source":"navigation-2-off.json","name":"Navigation2Off","title":"Navigation 2 Off","tags":["location","travel"],"categories":["navigation","maps"]},{"source":"navigation-2.json","name":"Navigation2","title":"Navigation 2","tags":["location","travel"],"categories":["navigation","maps"]},{"source":"navigation-off.json","name":"NavigationOff","title":"Navigation Off","tags":["location","travel"],"categories":["navigation","maps"]},{"source":"navigation.json","name":"Navigation","title":"Navigation","tags":["location","travel"],"categories":["navigation","maps"]},{"source":"network.json","name":"Network","title":"Network","tags":["tree"],"categories":["development"]},{"source":"newspaper.json","name":"Newspaper","title":"Newspaper","tags":["news","feed","home","magazine","article","headline"],"categories":["multimedia","communication"]},{"source":"nfc.json","name":"Nfc","title":"Nfc","tags":["contactless","payment","near-field communication"],"categories":["communication","money","devices"]},{"source":"nut-off.json","name":"NutOff","title":"Nut Off","tags":["hazelnut","acorn","food","allergy","intolerance","diet"],"categories":["food-beverage"]},{"source":"nut.json","name":"Nut","title":"Nut","tags":["hazelnut","acorn","food","diet"],"categories":["food-beverage"]},{"source":"octagon.json","name":"Octagon","title":"Octagon","tags":["stop","shape"],"categories":["shapes"]},{"source":"option.json","name":"Option","title":"Option","tags":["keyboard","key","mac","alt","button"],"categories":["development"]},{"source":"orbit.json","name":"Orbit","title":"Orbit","tags":["planet","space","physics","satellites","moons"],"categories":["science"]},{"source":"outdent.json","name":"Outdent","title":"Outdent","tags":["text","tab"],"categories":["text","development"]},{"source":"package-2.json","name":"Package2","title":"Package 2","tags":["box","container","archive","zip"],"categories":["files","development"]},{"source":"package-check.json","name":"PackageCheck","title":"Package Check","tags":["confirm","verified","done","todo","tick","complete","task"],"categories":["development"]},{"source":"package-minus.json","name":"PackageMinus","title":"Package Minus","tags":["delete","remove"],"categories":["development"]},{"source":"package-open.json","name":"PackageOpen","title":"Package Open","tags":["box","container","unpack","open"],"categories":["development"]},{"source":"package-plus.json","name":"PackagePlus","title":"Package Plus","tags":["new","add","create"],"categories":["development"]},{"source":"package-search.json","name":"PackageSearch","title":"Package Search","tags":["find","product process"],"categories":["files","development"]},{"source":"package-x.json","name":"PackageX","title":"Package X","tags":["delete","remove"],"categories":["development"]},{"source":"package.json","name":"Package","title":"Package","tags":["box","container"],"categories":["files","development"]},{"source":"paint-bucket.json","name":"PaintBucket","title":"Paint Bucket","tags":["fill","paint","bucket","design"],"categories":["design"]},{"source":"paintbrush-2.json","name":"Paintbrush2","title":"Paintbrush 2","tags":["brush","paintbrush","design","color"],"categories":["text","design","photography"]},{"source":"paintbrush.json","name":"Paintbrush","title":"Paintbrush","tags":["brush","paintbrush","design","color"],"categories":["text","design","photography"]},{"source":"palette.json","name":"Palette","title":"Palette","tags":["color","theme"],"categories":["text","design","photography"]},{"source":"palmtree.json","name":"Palmtree","title":"Palmtree","tags":["vacation","leisure","island"],"categories":["nature"]},{"source":"panel-bottom-close.json","name":"PanelBottomClose","title":"Panel Bottom Close","tags":["drawer","dock","hide"],"categories":["layout","arrows"]},{"source":"panel-bottom-inactive.json","name":"PanelBottomInactive","title":"Panel Bottom Inactive","tags":["drawer","dock","show","reveal","dashed"],"categories":["layout"]},{"source":"panel-bottom-open.json","name":"PanelBottomOpen","title":"Panel Bottom Open","tags":["drawer","dock","show","reveal"],"categories":["layout","arrows"]},{"source":"panel-bottom.json","name":"PanelBottom","title":"Panel Bottom","tags":["drawer","dock"],"categories":["layout"]},{"source":"panel-left-close.json","name":"PanelLeftClose","title":"Panel Left Close","tags":["primary","drawer","hide"],"categories":["layout","arrows"]},{"source":"panel-left-inactive.json","name":"PanelLeftInactive","title":"Panel Left Inactive","tags":["sidebar","primary","drawer","show","reveal","dashed"],"categories":["layout"]},{"source":"panel-left-open.json","name":"PanelLeftOpen","title":"Panel Left Open","tags":["primary","drawer","show","reveal"],"categories":["layout","arrows"]},{"source":"panel-left.json","name":"PanelLeft","title":"Panel Left","tags":["primary","drawer"],"categories":["layout"]},{"source":"panel-right-close.json","name":"PanelRightClose","title":"Panel Right Close","tags":["sidebar","secondary","drawer","hide"],"categories":["layout","arrows"]},{"source":"panel-right-inactive.json","name":"PanelRightInactive","title":"Panel Right Inactive","tags":["sidebar","secondary","drawer","show","reveal","dashed"],"categories":["layout"]},{"source":"panel-right-open.json","name":"PanelRightOpen","title":"Panel Right Open","tags":["sidebar","secondary","drawer","show","reveal"],"categories":["layout","arrows"]},{"source":"panel-right.json","name":"PanelRight","title":"Panel Right","tags":["sidebar","secondary","drawer"],"categories":["layout"]},{"source":"panel-top-close.json","name":"PanelTopClose","title":"Panel Top Close","tags":["menu bar","drawer","hide"],"categories":["layout","arrows"]},{"source":"panel-top-inactive.json","name":"PanelTopInactive","title":"Panel Top Inactive","tags":["menu bar","drawer","show","reveal","dashed"],"categories":["layout"]},{"source":"panel-top-open.json","name":"PanelTopOpen","title":"Panel Top Open","tags":["menu bar","drawer","show","reveal"],"categories":["layout","arrows"]},{"source":"panel-top.json","name":"PanelTop","title":"Panel Top","tags":["drawer","menu bar","browser","webpage"],"categories":["layout","design","development"]},{"source":"paperclip.json","name":"Paperclip","title":"Paperclip","tags":["attachment","file"],"categories":["text","design","files","mail"]},{"source":"parentheses.json","name":"Parentheses","title":"Parentheses","tags":["code","token","parenthesis","parens","brackets","parameters","arguments","args","input","call","maths","formula","function","(",")"],"categories":["development","files","maths"]},{"source":"parking-circle-off.json","name":"ParkingCircleOff","title":"Parking Circle Off","tags":["parking lot","car park","no parking"],"categories":["transportation","maps"]},{"source":"parking-circle.json","name":"ParkingCircle","title":"Parking Circle","tags":["parking lot","car park"],"categories":["transportation","maps"]},{"source":"parking-meter.json","name":"ParkingMeter","title":"Parking Meter","tags":["driving","car park","pay","sidewalk","pavement"],"categories":["transportation","maps"]},{"source":"parking-square-off.json","name":"ParkingSquareOff","title":"Parking Square Off","tags":["parking lot","car park","no parking"],"categories":["transportation","maps"]},{"source":"parking-square.json","name":"ParkingSquare","title":"Parking Square","tags":["parking lot","car park"],"categories":["transportation","maps"]},{"source":"party-popper.json","name":"PartyPopper","title":"Party Popper","tags":["emoji","congratulations","celebration","party","tada","🎉","🎊","excitement","exciting","excites","confetti"],"categories":["emoji"]},{"source":"pause-circle.json","name":"PauseCircle","title":"Pause Circle","tags":["music","audio","stop"],"categories":["multimedia","shapes"]},{"source":"pause-octagon.json","name":"PauseOctagon","title":"Pause Octagon","tags":["music","audio","stop"],"categories":["multimedia","shapes"]},{"source":"pause.json","name":"Pause","title":"Pause","tags":["music","stop"],"categories":["multimedia"]},{"source":"paw-print.json","name":"PawPrint","title":"Paw Print","tags":["pets","vets","veterinarian","domesticated","cat","dog","bear"],"categories":["animals"]},{"source":"pc-case.json","name":"PcCase","title":"Pc Case","tags":["computer","chassis"],"categories":["devices","gaming"]},{"source":"pen-line.json","name":"PenLine","title":"Pen Line","tags":["pencil","change","create","draw","writer","writing","biro","ink","marker","felt tip","stationery","artist"],"categories":["text","design","tools"]},{"source":"pen-square.json","name":"PenSquare","title":"Pen Square","tags":["pencil","change","create","draw","sketch","draft","writer","writing","biro","ink","marker","felt tip","stationery","artist"],"categories":["text"]},{"source":"pen-tool.json","name":"PenTool","title":"Pen Tool","tags":["vector","drawing","path"],"categories":["text","design","cursors"]},{"source":"pen.json","name":"Pen","title":"Pen","tags":["pencil","change","create","draw","writer","writing","biro","ink","marker","felt tip","stationery","artist"],"categories":["text","design","tools"]},{"source":"pencil-line.json","name":"PencilLine","title":"Pencil Line","tags":["pencil","change","create","draw","sketch","draft","writer","writing","biro","ink","marker","felt tip","stationery","artist"],"categories":["text","design","tools"]},{"source":"pencil-ruler.json","name":"PencilRuler","title":"Pencil Ruler","tags":["edit","create","draw","sketch","draft","writer","writing","stationery","artist","measurements","centimeters","cm","millimeters","mm","metre","foot","feet","inches","units","size","length","width","height","dimensions","depth","breadth","extent"],"categories":["tools","design","layout","text"]},{"source":"pencil.json","name":"Pencil","title":"Pencil","tags":["rubber","edit","create","draw","sketch","draft","writer","writing","stationery","artist"],"categories":["design","cursors","tools","text"]},{"source":"percent-circle.json","name":"PercentCircle","title":"Percent Circle","tags":["verified","unverified","sale","discount","offer","marketing","sticker","price tag"],"categories":["account","social","money","shopping","maths","shapes"]},{"source":"percent-diamond.json","name":"PercentDiamond","title":"Percent Diamond","tags":["verified","unverified","sale","discount","offer","marketing","sticker","price tag"],"categories":["account","social","money","shopping","maths","shapes"]},{"source":"percent-square.json","name":"PercentSquare","title":"Percent Square","tags":["verified","unverified","sale","discount","offer","marketing","sticker","price tag"],"categories":["account","social","money","shopping","maths","shapes"]},{"source":"percent.json","name":"Percent","title":"Percent","tags":["percentage","modulo","modulus","remainder","%","sale","discount","offer","marketing"],"categories":["maths","development","money","shopping"]},{"source":"person-standing.json","name":"PersonStanding","title":"Person Standing","tags":["people","human","accessibility","stick figure"],"categories":["accessibility","people"]},{"source":"phone-call.json","name":"PhoneCall","title":"Phone Call","tags":["ring"],"categories":["connectivity","devices","communication"]},{"source":"phone-forwarded.json","name":"PhoneForwarded","title":"Phone Forwarded","tags":["call"],"categories":["arrows","connectivity","devices","communication"]},{"source":"phone-incoming.json","name":"PhoneIncoming","title":"Phone Incoming","tags":["call"],"categories":["arrows","connectivity","devices","communication"]},{"source":"phone-missed.json","name":"PhoneMissed","title":"Phone Missed","tags":["call"],"categories":["connectivity","devices","communication"]},{"source":"phone-off.json","name":"PhoneOff","title":"Phone Off","tags":["call","mute"],"categories":["connectivity","devices","communication"]},{"source":"phone-outgoing.json","name":"PhoneOutgoing","title":"Phone Outgoing","tags":["call"],"categories":["arrows","connectivity","devices","communication"]},{"source":"phone.json","name":"Phone","title":"Phone","tags":["call"],"categories":["text","connectivity","devices","communication"]},{"source":"pi-square.json","name":"PiSquare","title":"Pi Square","tags":["constant","code","coding","programming","symbol","trigonometry","geometry","formula"],"categories":["development","maths","shapes"]},{"source":"pi.json","name":"Pi","title":"Pi","tags":["constant","code","coding","programming","symbol","trigonometry","geometry","formula"],"categories":["development","maths","shapes"]},{"source":"picture-in-picture-2.json","name":"PictureInPicture2","title":"Picture In Picture 2","tags":["display","play","video","pop out","always on top","window","inset","multitask"],"categories":["multimedia"]},{"source":"picture-in-picture.json","name":"PictureInPicture","title":"Picture In Picture","tags":["display","play","video","pop out","always on top","window","inset","multitask"],"categories":["multimedia"]},{"source":"pie-chart.json","name":"PieChart","title":"Pie Chart","tags":["statistics","diagram","presentation"],"categories":["charts","files"]},{"source":"piggy-bank.json","name":"PiggyBank","title":"Piggy Bank","tags":["money","savings"],"categories":["money"]},{"source":"pilcrow-square.json","name":"PilcrowSquare","title":"Pilcrow Square","tags":["paragraph","mark","paraph","blind","typography","type","text","prose","symbol"],"categories":["text"]},{"source":"pilcrow.json","name":"Pilcrow","title":"Pilcrow","tags":["paragraph","mark","paraph","blind","typography","type","text","prose","symbol"],"categories":["text"]},{"source":"pill.json","name":"Pill","title":"Pill","tags":["medicine","medication","drug","prescription","tablet","pharmacy"],"categories":["medical"]},{"source":"pin-off.json","name":"PinOff","title":"Pin Off","tags":["unpin","map","unlock","unfix","unsave","remove"],"categories":["maps"]},{"source":"pin.json","name":"Pin","title":"Pin","tags":["save","map","lock","fix"],"categories":["maps","account"]},{"source":"pipette.json","name":"Pipette","title":"Pipette","tags":["eye dropper","color picker","lab","chemistry"],"categories":["text","design","science"]},{"source":"pizza.json","name":"Pizza","title":"Pizza","tags":["pie","quiche","food"],"categories":["food-beverage"]},{"source":"plane-landing.json","name":"PlaneLanding","title":"Plane Landing","tags":["arrival","plane","trip","airplane","landing"],"categories":["transportation","travel"]},{"source":"plane-takeoff.json","name":"PlaneTakeoff","title":"Plane Takeoff","tags":["departure","plane","trip","airplane","takeoff"],"categories":["transportation","travel"]},{"source":"plane.json","name":"Plane","title":"Plane","tags":["plane","trip","airplane"],"categories":["transportation","travel"]},{"source":"play-circle.json","name":"PlayCircle","title":"Play Circle","tags":["music","start","run"],"categories":["shapes","multimedia"]},{"source":"play-square.json","name":"PlaySquare","title":"Play Square","tags":["music","audio","video","start","run"],"categories":["arrows","multimedia"]},{"source":"play.json","name":"Play","title":"Play","tags":["music","audio","video","start","run"],"categories":["arrows","multimedia"]},{"source":"plug-2.json","name":"Plug2","title":"Plug 2","tags":["electricity","socket","outlet"],"categories":["devices","development"]},{"source":"plug-zap-2.json","name":"PlugZap2","title":"Plug Zap 2","tags":["electricity","electronics","charge","charging","battery","connect"],"categories":["devices"]},{"source":"plug-zap.json","name":"PlugZap","title":"Plug Zap","tags":["electricity","electronics","charge","charging","battery","connect"],"categories":["devices"]},{"source":"plug.json","name":"Plug","title":"Plug","tags":["electricity","electronics","socket","outlet"],"categories":["devices","development"]},{"source":"plus-circle.json","name":"PlusCircle","title":"Plus Circle","tags":["add","new","increase","increment","positive","calculate","crosshair","aim","target","scope","sight","reticule","maximum","upgrade","extra","operator","join","concatenate","code","coding","+"],"categories":["maths","development","shapes","cursors","gaming"]},{"source":"plus-square.json","name":"PlusSquare","title":"Plus Square","tags":["add","new","increase","increment","positive","calculate","calculator","button","keyboard","toolbar","maximum","upgrade","extra","operator","join","concatenate","code","coding","+"],"categories":["maths","tools","development","text","shapes"]},{"source":"plus.json","name":"Plus","title":"Plus","tags":["add","new","increase","increment","positive","calculate","toolbar","crosshair","aim","target","scope","sight","reticule","maximum","upgrade","extra","+"],"categories":["maths","tools","development","text","cursors","gaming"]},{"source":"pocket-knife.json","name":"PocketKnife","title":"Pocket Knife","tags":["swiss army knife","penknife","multi-tool","multitask","blade","cutter","gadget","corkscrew"],"categories":["tools"]},{"source":"pocket.json","name":"Pocket","title":"Pocket","tags":["logo","save"],"categories":["brands","development"]},{"source":"podcast.json","name":"Podcast","title":"Podcast","tags":["mic","music"],"categories":["multimedia","social"]},{"source":"pointer.json","name":"Pointer","title":"Pointer","tags":["mouse"],"categories":["cursors"]},{"source":"popcorn.json","name":"Popcorn","title":"Popcorn","tags":["cinema","movies","films","salted","sweet","sugar","candy","snack"],"categories":["food-beverage","multimedia"]},{"source":"popsicle.json","name":"Popsicle","title":"Popsicle","tags":["ice lolly","ice cream","sweet","food"],"categories":["food-beverage"]},{"source":"pound-sterling.json","name":"PoundSterling","title":"Pound Sterling","tags":["currency","money","payment"],"categories":["currency","money"]},{"source":"power-off.json","name":"PowerOff","title":"Power Off","tags":["on","off","device","switch"],"categories":["connectivity"]},{"source":"power.json","name":"Power","title":"Power","tags":["on","off","device","switch","reboot","restart"],"categories":["connectivity"]},{"source":"presentation.json","name":"Presentation","title":"Presentation","tags":["screen","whiteboard","marker pens","markers","blackboard","chalk","easel","school","learning","lesson","office","meeting","project","planning"],"categories":["multimedia","photography","devices","communication","design"]},{"source":"printer.json","name":"Printer","title":"Printer","tags":["fax","office","device"],"categories":["devices","account"]},{"source":"projector.json","name":"Projector","title":"Projector","tags":["cinema","film","movie","home video","presentation","slideshow","office","meeting","project","planning"],"categories":["multimedia","photography","devices","communication"]},{"source":"puzzle.json","name":"Puzzle","title":"Puzzle","tags":["component","module","part","piece"],"categories":["development","gaming"]},{"source":"qr-code.json","name":"QrCode","title":"Qr Code","tags":["barcode","scan"],"categories":["development","social"]},{"source":"quote.json","name":"Quote","title":"Quote","tags":["quotation"],"categories":["text"]},{"source":"rabbit.json","name":"Rabbit","title":"Rabbit","tags":["animal","rodent","pet","pest","bunny","hare","fast","speed","hop"],"categories":["animals"]},{"source":"radar.json","name":"Radar","title":"Radar","tags":["scan","sonar","detect","find","locate"],"categories":["navigation","maps","security","communication"]},{"source":"radiation.json","name":"Radiation","title":"Radiation","tags":["radioactive","nuclear","fallout","waste","atomic","physics","particle","element","molecule"],"categories":["science"]},{"source":"radio-receiver.json","name":"RadioReceiver","title":"Radio Receiver","tags":["device","music","connect"],"categories":["devices"]},{"source":"radio-tower.json","name":"RadioTower","title":"Radio Tower","tags":["signal","broadcast","connectivity","live","frequency"],"categories":["devices","multimedia","social"]},{"source":"radio.json","name":"Radio","title":"Radio","tags":["signal","broadcast","connectivity","live","frequency"],"categories":["devices","multimedia","social"]},{"source":"rail-symbol.json","name":"RailSymbol","title":"Rail Symbol","tags":["railway","train","track","line"],"categories":["transportation","maps"]},{"source":"rainbow.json","name":"Rainbow","title":"Rainbow","tags":["colors","colours","spectrum","light","prism","arc","clear","sunshine"],"categories":["weather"]},{"source":"rat.json","name":"Rat","title":"Rat","tags":["mouse","mice","gerbil","rodent","pet","pest","plague","disease"],"categories":["animals"]},{"source":"ratio.json","name":"Ratio","title":"Ratio","tags":["screens","rotate","rotation","aspect ratio","proportions","16:9","widescreen","4:3","responsive","mobile","desktop","monitor","orientation","portrait","landscape"],"categories":["connectivity","devices","design","photography"]},{"source":"receipt.json","name":"Receipt","title":"Receipt","tags":["bill","voucher","slip","check","counterfoil"],"categories":["money","travel"]},{"source":"rectangle-horizontal.json","name":"RectangleHorizontal","title":"Rectangle Horizontal","tags":["rectangle","aspect ratio","16:9","horizontal","shape"],"categories":["shapes","design"]},{"source":"rectangle-vertical.json","name":"RectangleVertical","title":"Rectangle Vertical","tags":["rectangle","aspect ratio","9:16","vertical","shape"],"categories":["shapes","design"]},{"source":"recycle.json","name":"Recycle","title":"Recycle","tags":["sustainability","salvage","arrows"],"categories":["sustainability"]},{"source":"redo-2.json","name":"Redo2","title":"Redo 2","tags":["undo","rerun","history"],"categories":["text","arrows"]},{"source":"redo-dot.json","name":"RedoDot","title":"Redo Dot","tags":["redo","history","step","over","forward"],"categories":["text","arrows"]},{"source":"redo.json","name":"Redo","title":"Redo","tags":["undo","rerun","history"],"categories":["text","arrows"]},{"source":"refresh-ccw-dot.json","name":"RefreshCcwDot","title":"Refresh Ccw Dot","tags":["arrows","rotate","reload","synchronise","synchronize","circular","cycle","issue","code","coding","version control"],"categories":["arrows","development","shapes"]},{"source":"refresh-ccw.json","name":"RefreshCcw","title":"Refresh Ccw","tags":["arrows","rotate","reload","rerun","synchronise","synchronize","circular","cycle"],"categories":["arrows"]},{"source":"refresh-cw-off.json","name":"RefreshCwOff","title":"Refresh Cw Off","tags":["rotate","reload","rerun","synchronise","synchronize","arrows","circular","cycle","cancel","no","stop","error","disconnect","ignore"],"categories":["arrows"]},{"source":"refresh-cw.json","name":"RefreshCw","title":"Refresh Cw","tags":["rotate","reload","rerun","synchronise","synchronize","arrows","circular","cycle"],"categories":["arrows"]},{"source":"refrigerator.json","name":"Refrigerator","title":"Refrigerator","tags":["frigerator","fridge","freezer","cooler","icebox","chiller","cold storage"],"categories":["food-beverage","home"]},{"source":"regex.json","name":"Regex","title":"Regex","tags":["search","text","code"],"categories":["text","development"]},{"source":"remove-formatting.json","name":"RemoveFormatting","title":"Remove Formatting","tags":["text","font","typography","format","x","remove","delete","times","clear"],"categories":["text"]},{"source":"repeat-1.json","name":"Repeat1","title":"Repeat 1","tags":["replay"],"categories":["multimedia"]},{"source":"repeat-2.json","name":"Repeat2","title":"Repeat 2","tags":["arrows","retweet","repost","share","repeat","loop"],"categories":["arrows","social","multimedia"]},{"source":"repeat.json","name":"Repeat","title":"Repeat","tags":["loop","arrows"],"categories":["arrows","multimedia"]},{"source":"replace-all.json","name":"ReplaceAll","title":"Replace All","tags":["search","substitute","swap","change"],"categories":["text"]},{"source":"replace.json","name":"Replace","title":"Replace","tags":["search","substitute","swap","change"],"categories":["text"]},{"source":"reply-all.json","name":"ReplyAll","title":"Reply All","tags":["email"],"categories":["mail"]},{"source":"reply.json","name":"Reply","title":"Reply","tags":["email"],"categories":["mail"]},{"source":"rewind.json","name":"Rewind","title":"Rewind","tags":["music"],"categories":["arrows","multimedia"]},{"source":"rocket.json","name":"Rocket","title":"Rocket","tags":["release","boost","launch","space","version"],"categories":["gaming","development"]},{"source":"rocking-chair.json","name":"RockingChair","title":"Rocking Chair","tags":["chair","furniture","seat"],"categories":["furniture"]},{"source":"roller-coaster.json","name":"RollerCoaster","title":"Roller Coaster","tags":["attraction","entertainment","amusement park","theme park","funfair"],"categories":["maps"]},{"source":"rotate-3d.json","name":"Rotate3d","title":"Rotate 3d","tags":["gizmo","transform","orientation","orbit"],"categories":["design"]},{"source":"rotate-ccw.json","name":"RotateCcw","title":"Rotate Ccw","tags":["arrow","left","counter-clockwise","restart","reload","rerun","refresh","backup","undo"],"categories":["arrows","design","photography"]},{"source":"rotate-cw.json","name":"RotateCw","title":"Rotate Cw","tags":["arrow","right","clockwise","refresh","reload","rerun","redo"],"categories":["arrows","design","photography"]},{"source":"router.json","name":"Router","title":"Router","tags":["computer","server","cloud"],"categories":["development","devices","connectivity","home"]},{"source":"rows.json","name":"Rows","title":"Rows","tags":["split","lines","queue","series","list","vertical","horizontal"],"categories":["layout","design","text"]},{"source":"rss.json","name":"Rss","title":"Rss","tags":["feed","subscribe"],"categories":["development","social"]},{"source":"ruler.json","name":"Ruler","title":"Ruler","tags":["measurements","centimeters","cm","millimeters","mm","metre","foot","feet","inches","units","size","length","width","height","dimensions","depth","breadth","extent","stationery"],"categories":["tools","design","layout"]},{"source":"russian-ruble.json","name":"RussianRuble","title":"Russian Ruble","tags":["currency","money","payment"],"categories":["currency","money"]},{"source":"sailboat.json","name":"Sailboat","title":"Sailboat","tags":["ship","boat","harbor","harbour","dock"],"categories":["transportation","travel"]},{"source":"salad.json","name":"Salad","title":"Salad","tags":["food","vegetarian","dish","restaurant","course","meal","side","vegetables","health"],"categories":["food-beverage","emoji"]},{"source":"sandwich.json","name":"Sandwich","title":"Sandwich","tags":["food","snack","dish","restaurant","lunch","meal"],"categories":["food-beverage"]},{"source":"satellite-dish.json","name":"SatelliteDish","title":"Satellite Dish","tags":["antenna","receiver","dish aerial","saucer"],"categories":["connectivity","devices","multimedia"]},{"source":"satellite.json","name":"Satellite","title":"Satellite","tags":["space station","orbit","transmitter"],"categories":["connectivity","science"]},{"source":"save-all.json","name":"SaveAll","title":"Save All","tags":["floppy disks","copy"],"categories":["text","files"]},{"source":"save.json","name":"Save","title":"Save","tags":["floppy disk"],"categories":["text","files"]},{"source":"scale-3d.json","name":"Scale3d","title":"Scale 3d","tags":["gizmo","transform","size"],"categories":["design"]},{"source":"scale.json","name":"Scale","title":"Scale","tags":["balance","legal","license","right","rule","law"],"categories":["maps"]},{"source":"scaling.json","name":"Scaling","title":"Scaling","tags":["scale","resize","design"],"categories":["design"]},{"source":"scan-face.json","name":"ScanFace","title":"Scan Face","tags":["face","biometric","authentication","2fa","dashed"],"categories":["devices","social"]},{"source":"scan-line.json","name":"ScanLine","title":"Scan Line","tags":["qr-code","dashed"],"categories":["devices","social"]},{"source":"scan.json","name":"Scan","title":"Scan","tags":["qr-code","dashed"],"categories":["devices","social"]},{"source":"scatter-chart.json","name":"ScatterChart","title":"Scatter Chart","tags":["statistics","diagram","graph"],"categories":["charts"]},{"source":"school-2.json","name":"School2","title":"School 2","tags":["building","education","childhood","university"],"categories":["buildings","maps"]},{"source":"school.json","name":"School","title":"School","tags":["building","education","childhood","university"],"categories":["buildings","maps"]},{"source":"scissors-line-dashed.json","name":"ScissorsLineDashed","title":"Scissors Line Dashed","tags":["cut here","along","snip","chop","stationery","crafts","instructions","diagram"],"categories":["design","tools"]},{"source":"scissors-square-dashed-bottom.json","name":"ScissorsSquareDashedBottom","title":"Scissors Square Dashed Bottom","tags":["cut","snippet","chop","stationery","crafts"],"categories":["text","design","tools","files","development"]},{"source":"scissors-square.json","name":"ScissorsSquare","title":"Scissors Square","tags":["cut","snippet","chop","stationery","crafts","toolbar","button"],"categories":["text","design","tools","files","development"]},{"source":"scissors.json","name":"Scissors","title":"Scissors","tags":["cut","snip","chop","stationery","crafts"],"categories":["text","design","tools"]},{"source":"screen-share-off.json","name":"ScreenShareOff","title":"Screen Share Off","tags":["desktop","disconnect","monitor"],"categories":["connectivity","devices","communication"]},{"source":"screen-share.json","name":"ScreenShare","title":"Screen Share","tags":["host","desktop","monitor"],"categories":["connectivity","devices","communication"]},{"source":"scroll-text.json","name":"ScrollText","title":"Scroll Text","tags":["paper","log","scripture","document","notes","parchment","list","long","script","story","code","coding"],"categories":["gaming","development","text"]},{"source":"scroll.json","name":"Scroll","title":"Scroll","tags":["paper","log","scripture","document","notes","parchment","list","long","script","story","code","coding"],"categories":["gaming","development","text"]},{"source":"search-check.json","name":"SearchCheck","title":"Search Check","tags":["find","scan","magnifier","magnifying glass","found","correct","complete","tick"],"categories":["text","account","social"]},{"source":"search-code.json","name":"SearchCode","title":"Search Code","tags":["find","scan","magnifier","magnifying glass","grep","chevrons","<>"],"categories":["text","account","social","development"]},{"source":"search-slash.json","name":"SearchSlash","title":"Search Slash","tags":["find","scan","magnifier","magnifying glass","stop","clear","cancel","abort","/"],"categories":["text","account","social"]},{"source":"search-x.json","name":"SearchX","title":"Search X","tags":["find","scan","magnifier","magnifying glass","stop","clear","cancel","abort"],"categories":["text","account","social"]},{"source":"search.json","name":"Search","title":"Search","tags":["find","scan","magnifier","magnifying glass"],"categories":["text","account","social"]},{"source":"send-horizontal.json","name":"SendHorizontal","title":"Send Horizontal","tags":["email","message","mail","paper airplane","paper aeroplane","submit"],"categories":["mail","communication","connectivity"]},{"source":"send-to-back.json","name":"SendToBack","title":"Send To Back","tags":["bring","send","move","under","back","backwards","overlap","layer","order"],"categories":["design","layout"]},{"source":"send.json","name":"Send","title":"Send","tags":["email","message","mail","paper airplane","paper aeroplane","submit"],"categories":["mail","communication","connectivity"]},{"source":"separator-horizontal.json","name":"SeparatorHorizontal","title":"Separator Horizontal","tags":["move","split"],"categories":["text","arrows","layout"]},{"source":"separator-vertical.json","name":"SeparatorVertical","title":"Separator Vertical","tags":["move","split"],"categories":["text","arrows","layout"]},{"source":"server-cog.json","name":"ServerCog","title":"Server Cog","tags":["cloud","storage","computing","cog","gear"],"categories":["development","devices"]},{"source":"server-crash.json","name":"ServerCrash","title":"Server Crash","tags":["cloud","storage","problem","error"],"categories":["development","devices"]},{"source":"server-off.json","name":"ServerOff","title":"Server Off","tags":["cloud","storage"],"categories":["development","devices"]},{"source":"server.json","name":"Server","title":"Server","tags":["cloud","storage"],"categories":["development","devices"]},{"source":"settings-2.json","name":"Settings2","title":"Settings 2","tags":["cog","edit","gear","preferences"],"categories":["account"]},{"source":"settings.json","name":"Settings","title":"Settings","tags":["cog","edit","gear","preferences"],"categories":["account"]},{"source":"shapes.json","name":"Shapes","title":"Shapes","tags":["triangle","equilateral","square","circle","classification","different","collection","toy","blocks","learning"],"categories":["shapes","gaming"]},{"source":"share-2.json","name":"Share2","title":"Share 2","tags":["network","connections"],"categories":["account","social"]},{"source":"share.json","name":"Share","title":"Share","tags":["network","connections"],"categories":["account","social"]},{"source":"sheet.json","name":"Sheet","title":"Sheet","tags":["spreadsheets","table","excel"],"categories":["text","files"]},{"source":"shell.json","name":"Shell","title":"Shell","tags":["beach","sand","holiday","sealife","fossil","ammonite","biology","ocean","terminal","command line","session","bash","zsh","roll","wrap","chewing gum","bubble gum","sweet","sugar","hosepipe","carpet","string","spiral","spinner","hypnotise","hypnosis"],"categories":["animals","development","nature","science","travel","food-beverage","home"]},{"source":"shield-alert.json","name":"ShieldAlert","title":"Shield Alert","tags":["unshielded","cybersecurity","insecure","unsecured","safety","unsafe","protection","unprotected","guardian","unguarded","unarmored","unarmoured","defenseless","defenceless","undefended","defender","blocked","stopped","intercepted","interception","saved","thwarted","threat","prevention","unprevented","antivirus","vigilance","vigilant","detection","detected","scanned","found","exploit","vulnerability","vulnerable","weakness","infection","infected","comprimised","data leak","audited","admin","verification","unverified","uncertified","warning","emergency","attention","urgent","alarm","crest","bravery","strength","tough","attacked","damaged","injured","hit","expired","disabled","inactive","error","exclamation mark","!"],"categories":["account","security","development","notifications","gaming"]},{"source":"shield-ban.json","name":"ShieldBan","title":"Shield Ban","tags":["unshielded","cybersecurity","insecure","unsecured","safety","unsafe","protection","unprotected","guardian","unguarded","unarmored","unarmoured","defenseless","defenceless","undefended","defender","blocked","stopped","intercepted","interception","saved","thwarted","threat","prevention","unprevented","antivirus","vigilance","vigilant","detection","detected","scanned","found","exploit","vulnerability","vulnerable","weakness","infection","infected","comprimised","data leak","audited","admin","verification","unverified","uncertified","cancel","error","crest","bravery","attacked","damaged","injured","hit","expired","eliminated","disabled","inactive","/"],"categories":["account","security","development","gaming"]},{"source":"shield-check.json","name":"ShieldCheck","title":"Shield Check","tags":["cybersecurity","secured","safety","protection","protected","guardian","guarded","armored","armoured","defense","defence","defended","blocked","threat","prevention","prevented","antivirus","vigilance","vigilant","active","activated","enabled","detection","scanned","found","strength","strong","tough","invincible","invincibility","invulnerable","undamaged","audited","admin","verification","verified","certification","certified","tested","passed","qualified","cleared","cleaned","disinfected","uninfected","task","completed","todo","done","ticked","checked","crest","bravery"],"categories":["account","security","development","gaming"]},{"source":"shield-ellipsis.json","name":"ShieldEllipsis","title":"Shield Ellipsis","tags":["cybersecurity","securing","protecting","guarding","armoring","armouring","defending","blocking","preventing","antivirus","detecting","scanning","finding","auditing","admin","verifying","crest","upgrading","loader","loading","throbber","progress","dots","more","etc","...","…"],"categories":["account","security","development","gaming"]},{"source":"shield-half.json","name":"ShieldHalf","title":"Shield Half","tags":["cybersecurity","secure","safety","protection","guardian","armored","armoured","defense","defence","defender","block","threat","prevention","antivirus","vigilance","vigilant","detection","scan","strength","strong","tough","invincible","invincibility","invulnerable","undamaged","audit","admin","verification","crest","logo","sigil","flag","team","faction","fraternity","university","college","academy","school","education","uniform","bravery","knight","foot soldier","infantry","trooper","pawn","battle","war","military","ranking","army","cadet","scout"],"categories":["account","security","development","gaming"]},{"source":"shield-minus.json","name":"ShieldMinus","title":"Shield Minus","tags":["unshield","cybersecurity","unsecure","unguard","unblock","antivirus","clean","clear","disinfect","patch","fix","stop","cancel","remove","relax","admin","crest","bravery","weakened","damaged","hit","unarm","disable","deactivate","decommission","downgraded","minimum","-"],"categories":["account","security","development","gaming"]},{"source":"shield-off.json","name":"ShieldOff","title":"Shield Off","tags":["unshielded","cybersecurity","insecure","unsecured","safety","unsafe","protection","unprotected","guardian","unguarded","unarmored","unarmoured","defenseless","defenceless","undefended","defender","interception","threat","prevention","unprevented","antivirus","detection","undetected","exploit","vulnerability","vulnerable","weakness","infected","infection","comprimised","data leak","unaudited","admin","verification","unverified","inactive","cancelled","error","crest","bravery","damaged","injured","hit","expired","eliminated"],"categories":["account","security","development","gaming"]},{"source":"shield-plus.json","name":"ShieldPlus","title":"Shield Plus","tags":["cybersecurity","secure","safety","protection","guardian","armored","armoured","defense","defence","defender","block","threat","prevention","antivirus","vigilance","vigilant","detection","scan","strength","strong","tough","invincible","invincibility","invulnerable","undamaged","extra","added","professional","enterprise","full","maximum","upgraded","ultra","activate","enable","audit","admin","verification","crest","medic","+"],"categories":["account","security","development","gaming"]},{"source":"shield-question.json","name":"ShieldQuestion","title":"Shield Question","tags":["unshielded","cybersecurity","insecure","unsecured","safety","unsafe","protection","unprotected","guardian","unguarded","unarmored","unarmoured","defenseless","defenceless","undefended","defender","threat","prevention","unprevented","antivirus","vigilance","vigilant","detection","undetected","scan","find","exploit","vulnerability","vulnerable","weakness","infection","comprimised","data leak","audit","admin","verification","unverified","uncertified","uncertain","unknown","inactive","crest","question mark","?"],"categories":["account","security","development","gaming"]},{"source":"shield-x.json","name":"ShieldX","title":"Shield X","tags":["unshielded","cybersecurity","insecure","unsecured","safety","unsafe","protection","unprotected","guardian","unguarded","unarmored","unarmoured","defenseless","defenceless","undefended","defender","blocked","stopped","intercepted","interception","saved","thwarted","threat","prevention","prevented","antivirus","vigilance","vigilant","detection","detected","scanned","found","exploit","vulnerability","vulnerable","weakness","infection","infected","comprimised","data leak","audited","admin","verification","unverified","inactive","cancel","error","wrong","false","crest","bravery","attacked","damaged","injured","hit","dead","deceased","expired","eliminated","exterminated"],"categories":["account","security","development","gaming"]},{"source":"shield.json","name":"Shield","title":"Shield","tags":["cybersecurity","secure","safety","protection","guardian","armored","armoured","defense","defence","defender","block","threat","prevention","antivirus","vigilance","vigilant","detection","scan","find","strength","strong","tough","invincible","invincibility","invulnerable","undamaged","audit","admin","verification","crest","bravery","knight","foot soldier","infantry","trooper","pawn","battle","war","military","army","cadet","scout"],"categories":["account","security","development","gaming","shapes"]},{"source":"ship-wheel.json","name":"ShipWheel","title":"Ship Wheel","tags":["steering","rudder","boat","knots","nautical mile","maritime","sailing","yacht","cruise","ocean liner","tanker","vessel","navy","trip"],"categories":["transportation","travel","maps"]},{"source":"ship.json","name":"Ship","title":"Ship","tags":["boat","knots","nautical mile","maritime","sailing","yacht","cruise","ocean liner","tanker","vessel","navy","trip"],"categories":["transportation","travel","maps"]},{"source":"shirt.json","name":"Shirt","title":"Shirt","tags":["t-shirt","shopping","store","clothing","clothes"],"categories":["shopping"]},{"source":"shopping-bag.json","name":"ShoppingBag","title":"Shopping Bag","tags":["ecommerce","cart","purchase","store"],"categories":["shopping"]},{"source":"shopping-basket.json","name":"ShoppingBasket","title":"Shopping Basket","tags":["cart","e-commerce","store","purchase","products","items","ingredients"],"categories":["shopping"]},{"source":"shopping-cart.json","name":"ShoppingCart","title":"Shopping Cart","tags":["trolley","cart","basket","e-commerce","store","purchase","products","items","ingredients"],"categories":["shopping"]},{"source":"shovel.json","name":"Shovel","title":"Shovel","tags":["dig","spade","treasure"],"categories":["nature","tools","gaming"]},{"source":"shower-head.json","name":"ShowerHead","title":"Shower Head","tags":["shower","bath","bathroom","amenities","services"],"categories":["home","travel"]},{"source":"shrink.json","name":"Shrink","title":"Shrink","tags":["scale","fullscreen"],"categories":["layout","arrows"]},{"source":"shrub.json","name":"Shrub","title":"Shrub","tags":["forest","undergrowth","park","nature"],"categories":["nature"]},{"source":"shuffle.json","name":"Shuffle","title":"Shuffle","tags":["music","random","reorder"],"categories":["multimedia","arrows"]},{"source":"sigma-square.json","name":"SigmaSquare","title":"Sigma Square","tags":["sum","calculate","formula","maths","enumeration","enumerate"],"categories":["text","maths"]},{"source":"sigma.json","name":"Sigma","title":"Sigma","tags":["sum","calculate","formula","maths","enumeration","enumerate"],"categories":["text","maths"]},{"source":"signal-high.json","name":"SignalHigh","title":"Signal High","tags":["connection","wireless","gsm","phone","2g","3g","4g","5g"],"categories":["connectivity"]},{"source":"signal-low.json","name":"SignalLow","title":"Signal Low","tags":["connection","wireless","gsm","phone","2g","3g","4g","5g"],"categories":["connectivity"]},{"source":"signal-medium.json","name":"SignalMedium","title":"Signal Medium","tags":["connection","wireless","gsm","phone","2g","3g","4g","5g"],"categories":["connectivity"]},{"source":"signal-zero.json","name":"SignalZero","title":"Signal Zero","tags":["connection","wireless","gsm","phone","2g","3g","4g","5g","lost"],"categories":["connectivity"]},{"source":"signal.json","name":"Signal","title":"Signal","tags":["connection","wireless","gsm","phone","2g","3g","4g","5g"],"categories":["connectivity"]},{"source":"siren.json","name":"Siren","title":"Siren","tags":["police","ambulance","emergency","security","alert","alarm","light"],"categories":["medical"]},{"source":"skip-back.json","name":"SkipBack","title":"Skip Back","tags":["arrow","previous","music"],"categories":["multimedia","arrows"]},{"source":"skip-forward.json","name":"SkipForward","title":"Skip Forward","tags":["arrow","skip","next","music"],"categories":["multimedia","arrows"]},{"source":"skull.json","name":"Skull","title":"Skull","tags":["death","danger","bone"],"categories":["gaming"]},{"source":"slack.json","name":"Slack","title":"Slack","tags":["logo"],"categories":["account","social","communication","brands","development"]},{"source":"slash.json","name":"Slash","title":"Slash","tags":["divide","division","or","/"],"categories":["development","maths"]},{"source":"slice.json","name":"Slice","title":"Slice","tags":["cutter","scalpel","knife"],"categories":["design"]},{"source":"sliders-horizontal.json","name":"SlidersHorizontal","title":"Sliders Horizontal","tags":["settings","filters","controls"],"categories":["account"]},{"source":"sliders.json","name":"Sliders","title":"Sliders","tags":["settings","controls"],"categories":["account"]},{"source":"smartphone-charging.json","name":"SmartphoneCharging","title":"Smartphone Charging","tags":["phone","cellphone","device","power","screen"],"categories":["connectivity","devices"]},{"source":"smartphone-nfc.json","name":"SmartphoneNfc","title":"Smartphone Nfc","tags":["contactless","payment","near-field communication","screen"],"categories":["communication","money","devices"]},{"source":"smartphone.json","name":"Smartphone","title":"Smartphone","tags":["phone","cellphone","device","screen"],"categories":["connectivity","devices"]},{"source":"smile-plus.json","name":"SmilePlus","title":"Smile Plus","tags":["emoji","face","happy","good","emotion","react","reaction","add"],"categories":["emoji","social","notifications","communication"]},{"source":"smile.json","name":"Smile","title":"Smile","tags":["emoji","face","happy","good","emotion"],"categories":["emoji","account"]},{"source":"snail.json","name":"Snail","title":"Snail","tags":["animal","insect","slow","speed","delicacy","spiral"],"categories":["animals","food-beverage"]},{"source":"snowflake.json","name":"Snowflake","title":"Snowflake","tags":["cold","weather","freeze","snow","winter"],"categories":["weather","seasons"]},{"source":"sofa.json","name":"Sofa","title":"Sofa","tags":["armchair","furniture","leisure","lounge","loveseat","couch"],"categories":["furniture"]},{"source":"soup.json","name":"Soup","title":"Soup","tags":["food","dish","restaurant","course","meal","bowl","starter"],"categories":["food-beverage"]},{"source":"space.json","name":"Space","title":"Space","tags":["text","selection","letters","characters","font","typography"],"categories":["text"]},{"source":"spade.json","name":"Spade","title":"Spade","tags":["shape","suit","playing","cards"],"categories":["shapes","gaming"]},{"source":"sparkle.json","name":"Sparkle","title":"Sparkle","tags":["star","effect","filter","night","magic","shiny","glitter","twinkle","celebration"],"categories":["shapes"]},{"source":"sparkles.json","name":"Sparkles","title":"Sparkles","tags":["stars","effect","filter","night","magic"],"categories":["shapes","cursors","multimedia","gaming","weather"]},{"source":"speaker.json","name":"Speaker","title":"Speaker","tags":["audio","music"],"categories":["multimedia","devices"]},{"source":"speech.json","name":"Speech","title":"Speech","tags":["disability","disabled","dda","human","accessibility","people","sound"],"categories":["accessibility","communication"]},{"source":"spell-check-2.json","name":"SpellCheck2","title":"Spell Check 2","tags":["spelling","error","mistake","oversight","typo","correction","code","linter","a"],"categories":["text","development"]},{"source":"spell-check.json","name":"SpellCheck","title":"Spell Check","tags":["spelling","error","mistake","oversight","typo","correction","code","linter","a"],"categories":["text","development"]},{"source":"spline.json","name":"Spline","title":"Spline","tags":[],"categories":["design"]},{"source":"split-square-horizontal.json","name":"SplitSquareHorizontal","title":"Split Square Horizontal","tags":["split","divide"],"categories":["layout"]},{"source":"split-square-vertical.json","name":"SplitSquareVertical","title":"Split Square Vertical","tags":["split","divide"],"categories":["layout"]},{"source":"split.json","name":"Split","title":"Split","tags":["break","disband","divide","separate","branch","disunite"],"categories":["development","arrows"]},{"source":"spray-can.json","name":"SprayCan","title":"Spray Can","tags":["paint","color","graffiti","decoration","aerosol","deodorant","shaving foam","air freshener"],"categories":["design","tools"]},{"source":"sprout.json","name":"Sprout","title":"Sprout","tags":["leaf","nature","plant"],"categories":["nature","gaming"]},{"source":"square-asterisk.json","name":"SquareAsterisk","title":"Square Asterisk","tags":["password","secret","access","key","multiply","multiplication","glob pattern","wildcard","*"],"categories":["text","security","account","maths","development"]},{"source":"square-code.json","name":"SquareCode","title":"Square Code","tags":["gist","source","programming","html","xml","coding"],"categories":["text","development"]},{"source":"square-dashed-bottom-code.json","name":"SquareDashedBottomCode","title":"Square Dashed Bottom Code","tags":["rectangle","aspect ratio","1:1","shape","snippet","code","coding"],"categories":["shapes","development","files"]},{"source":"square-dashed-bottom.json","name":"SquareDashedBottom","title":"Square Dashed Bottom","tags":["rectangle","aspect ratio","1:1","shape","snippet","code","coding"],"categories":["shapes","development","files"]},{"source":"square-dot.json","name":"SquareDot","title":"Square Dot","tags":["git","diff","modified","."],"categories":["shapes","development"]},{"source":"square-equal.json","name":"SquareEqual","title":"Square Equal","tags":["calculate","="],"categories":["maths","shapes"]},{"source":"square-slash.json","name":"SquareSlash","title":"Square Slash","tags":["git","diff","ignored","divide","division","shortcut","or","/"],"categories":["shapes","development","maths"]},{"source":"square-stack.json","name":"SquareStack","title":"Square Stack","tags":["versions","clone","copy","duplicate","multiple","revisions","version control","backup","history"],"categories":["text","files","development"]},{"source":"square.json","name":"Square","title":"Square","tags":["rectangle","aspect ratio","1:1","shape"],"categories":["shapes"]},{"source":"squirrel.json","name":"Squirrel","title":"Squirrel","tags":["animal","rodent","pet","pest","nuts","retrieve","updates","storage","stash"],"categories":["animals"]},{"source":"stamp.json","name":"Stamp","title":"Stamp","tags":["mark","print","clone","loyalty","library"],"categories":["design","cursors","tools","maps"]},{"source":"star-half.json","name":"StarHalf","title":"Star Half","tags":["bookmark","favorite","like","review","rating"],"categories":["social","multimedia"]},{"source":"star-off.json","name":"StarOff","title":"Star Off","tags":["dislike","unlike","remove","unrate"],"categories":["multimedia","social"]},{"source":"star.json","name":"Star","title":"Star","tags":["bookmark","favorite","like","review","rating"],"categories":["account","social","shapes","multimedia","weather","emoji","gaming"]},{"source":"step-back.json","name":"StepBack","title":"Step Back","tags":["arrow","previous","music","left","reverse"],"categories":["multimedia","arrows"]},{"source":"step-forward.json","name":"StepForward","title":"Step Forward","tags":["arrow","next","music","right","continue"],"categories":["multimedia","arrows"]},{"source":"stethoscope.json","name":"Stethoscope","title":"Stethoscope","tags":["phonendoscope","medical","heart","lungs","sound"],"categories":["science","medical"]},{"source":"sticker.json","name":"Sticker","title":"Sticker","tags":["reaction","emotion","smile","happy","feedback"],"categories":["communication","social"]},{"source":"sticky-note.json","name":"StickyNote","title":"Sticky Note","tags":["note","comment","reaction","memo"],"categories":["communication","social"]},{"source":"stop-circle.json","name":"StopCircle","title":"Stop Circle","tags":["media","music"],"categories":["multimedia","shapes"]},{"source":"store.json","name":"Store","title":"Store","tags":["shop","supermarket","stand","boutique","building"],"categories":["buildings","maps"]},{"source":"stretch-horizontal.json","name":"StretchHorizontal","title":"Stretch Horizontal","tags":["items","flex","justify","distribute"],"categories":["layout"]},{"source":"stretch-vertical.json","name":"StretchVertical","title":"Stretch Vertical","tags":["items","flex","justify","distribute"],"categories":["layout"]},{"source":"strikethrough.json","name":"Strikethrough","title":"Strikethrough","tags":["cross out","delete","remove","format"],"categories":["text"]},{"source":"subscript.json","name":"Subscript","title":"Subscript","tags":["text"],"categories":["text"]},{"source":"subtitles.json","name":"Subtitles","title":"Subtitles","tags":["captions","closed captions","accessibility"],"categories":[]},{"source":"sun-dim.json","name":"SunDim","title":"Sun Dim","tags":["brightness","dim","low","brightness low"],"categories":["accessibility","weather"]},{"source":"sun-medium.json","name":"SunMedium","title":"Sun Medium","tags":["brightness","medium"],"categories":["accessibility","weather"]},{"source":"sun-moon.json","name":"SunMoon","title":"Sun Moon","tags":["night","dark","light","moon","sun","brightness","theme","auto theme","system theme","appearance"],"categories":["accessibility"]},{"source":"sun-snow.json","name":"SunSnow","title":"Sun Snow","tags":["weather","air conditioning","temperature","hot","cold","seasons"],"categories":["weather"]},{"source":"sun.json","name":"Sun","title":"Sun","tags":["brightness","weather","light","summer"],"categories":["accessibility","weather","seasons"]},{"source":"sunrise.json","name":"Sunrise","title":"Sunrise","tags":["weather","time","morning","day"],"categories":["arrows","weather","time"]},{"source":"sunset.json","name":"Sunset","title":"Sunset","tags":["weather","time","evening","night"],"categories":["arrows","weather"]},{"source":"superscript.json","name":"Superscript","title":"Superscript","tags":["text","exponent"],"categories":["text"]},{"source":"swiss-franc.json","name":"SwissFranc","title":"Swiss Franc","tags":["currency","money","payment"],"categories":["currency","money"]},{"source":"switch-camera.json","name":"SwitchCamera","title":"Switch Camera","tags":["photo","selfie","front","back"],"categories":["communication","devices"]},{"source":"sword.json","name":"Sword","title":"Sword","tags":["battle","challenge","game","war","weapon"],"categories":["gaming","tools"]},{"source":"swords.json","name":"Swords","title":"Swords","tags":["battle","challenge","game","war","weapon"],"categories":["gaming","tools"]},{"source":"syringe.json","name":"Syringe","title":"Syringe","tags":["medicine","medical","needle","pump","plunger","nozzle","blood"],"categories":["science","medical"]},{"source":"table-2.json","name":"Table2","title":"Table 2","tags":["spreadsheet","grid"],"categories":["text","files"]},{"source":"table-properties.json","name":"TableProperties","title":"Table Properties","tags":["property list","plist","spreadsheet","grid","dictionary","object","hash"],"categories":["text","development","files"]},{"source":"table.json","name":"Table","title":"Table","tags":["spreadsheet","grid"],"categories":["text","files"]},{"source":"tablet-smartphone.json","name":"TabletSmartphone","title":"Tablet Smartphone","tags":["responsive","screens","browser","testing","mobile"],"categories":["devices","design","development","tools"]},{"source":"tablet.json","name":"Tablet","title":"Tablet","tags":["device"],"categories":["devices"]},{"source":"tablets.json","name":"Tablets","title":"Tablets","tags":["medicine","medication","drug","prescription","pills","pharmacy"],"categories":["medical"]},{"source":"tag.json","name":"Tag","title":"Tag","tags":["label","badge","ticket","mark"],"categories":["account"]},{"source":"tags.json","name":"Tags","title":"Tags","tags":["labels","badges","tickets","marks","copy","multiple"],"categories":["account"]},{"source":"tally-1.json","name":"Tally1","title":"Tally 1","tags":["count","score","enumerate","days","one","1","first","bar","prison","cell","sentence"],"categories":["maths","gaming"]},{"source":"tally-2.json","name":"Tally2","title":"Tally 2","tags":["count","score","enumerate","days","two","2","second","double","bars","prison","cell","sentence"],"categories":["maths","gaming"]},{"source":"tally-3.json","name":"Tally3","title":"Tally 3","tags":["count","score","enumerate","days","three","3","third","triple","bars","prison","cell","sentence"],"categories":["maths","gaming"]},{"source":"tally-4.json","name":"Tally4","title":"Tally 4","tags":["count","score","enumerate","days","4","fourth","quadruple","bars","prison","cell","sentence"],"categories":["maths","gaming"]},{"source":"tally-5.json","name":"Tally5","title":"Tally 5","tags":["count","score","enumerate","days","five","5","fifth","bars","prison","cell","sentence","slash","/"],"categories":["maths","gaming"]},{"source":"target.json","name":"Target","title":"Target","tags":["logo","bullseye","deadline","projects","overview","work","productivity"],"categories":["brands","gaming"]},{"source":"tent.json","name":"Tent","title":"Tent","tags":["campsite","wigwam"],"categories":["nature"]},{"source":"terminal-square.json","name":"TerminalSquare","title":"Terminal Square","tags":["code","command line","prompt","shell"],"categories":["development","shapes"]},{"source":"terminal.json","name":"Terminal","title":"Terminal","tags":["code","command line","prompt","shell"],"categories":["development"]},{"source":"test-tube-2.json","name":"TestTube2","title":"Test Tube 2","tags":["tube","vial","phial","flask","ampoule","ampule","lab","chemistry","experiment","test"],"categories":["science"]},{"source":"test-tube.json","name":"TestTube","title":"Test Tube","tags":["tube","vial","phial","flask","ampoule","ampule","lab","chemistry","experiment","test"],"categories":["science"]},{"source":"test-tubes.json","name":"TestTubes","title":"Test Tubes","tags":["tubes","vials","phials","flasks","ampoules","ampules","lab","chemistry","experiment","test"],"categories":["science"]},{"source":"text-cursor-input.json","name":"TextCursorInput","title":"Text Cursor Input","tags":["select"],"categories":["text","layout"]},{"source":"text-cursor.json","name":"TextCursor","title":"Text Cursor","tags":["select"],"categories":["text","cursors"]},{"source":"text-quote.json","name":"TextQuote","title":"Text Quote","tags":["blockquote","quotation","indent","reply","response"],"categories":["text"]},{"source":"text-select.json","name":"TextSelect","title":"Text Select","tags":["find","search","selection","dashed"],"categories":["text","cursors"]},{"source":"text.json","name":"Text","title":"Text","tags":["find","search","data","txt","pdf","document"],"categories":["text","files","cursors"]},{"source":"theater.json","name":"Theater","title":"Theater","tags":["theater","theatre","entertainment","podium","stage","musical"],"categories":["buildings","social"]},{"source":"thermometer-snowflake.json","name":"ThermometerSnowflake","title":"Thermometer Snowflake","tags":["temperature","celsius","fahrenheit","weather","cold","freeze","freezing"],"categories":["weather"]},{"source":"thermometer-sun.json","name":"ThermometerSun","title":"Thermometer Sun","tags":["temperature","celsius","fahrenheit","weather","warm","hot"],"categories":["weather"]},{"source":"thermometer.json","name":"Thermometer","title":"Thermometer","tags":["temperature","celsius","fahrenheit","weather"],"categories":["weather"]},{"source":"thumbs-down.json","name":"ThumbsDown","title":"Thumbs Down","tags":["dislike","bad","emotion"],"categories":["account","social"]},{"source":"thumbs-up.json","name":"ThumbsUp","title":"Thumbs Up","tags":["like","good","emotion"],"categories":["account","social"]},{"source":"ticket.json","name":"Ticket","title":"Ticket","tags":["entry","pass","voucher","perforated","dashed"],"categories":["account","transportation"]},{"source":"timer-off.json","name":"TimerOff","title":"Timer Off","tags":["time","timer","stopwatch"],"categories":["time"]},{"source":"timer-reset.json","name":"TimerReset","title":"Timer Reset","tags":["time","timer","stopwatch"],"categories":["time"]},{"source":"timer.json","name":"Timer","title":"Timer","tags":["time","timer","stopwatch"],"categories":["time"]},{"source":"toggle-left.json","name":"ToggleLeft","title":"Toggle Left","tags":["on","off","switch","boolean"],"categories":["layout","account","development"]},{"source":"toggle-right.json","name":"ToggleRight","title":"Toggle Right","tags":["on","off","switch","boolean"],"categories":["layout","account","development"]},{"source":"tornado.json","name":"Tornado","title":"Tornado","tags":["weather","wind","storm","hurricane"],"categories":["weather"]},{"source":"touchpad-off.json","name":"TouchpadOff","title":"Touchpad Off","tags":["trackpad","cursor"],"categories":["devices"]},{"source":"touchpad.json","name":"Touchpad","title":"Touchpad","tags":["trackpad","cursor"],"categories":["devices"]},{"source":"tower-control.json","name":"TowerControl","title":"Tower Control","tags":["airport","travel","tower","transportation","lighthouse"],"categories":["travel","transportation"]},{"source":"toy-brick.json","name":"ToyBrick","title":"Toy Brick","tags":["lego","block","addon","plugin","integration"],"categories":["gaming","development"]},{"source":"tractor.json","name":"Tractor","title":"Tractor","tags":["farming","farmer","ranch","harvest","equipment","vehicle"],"categories":["transportation","sustainability","food-beverage"]},{"source":"traffic-cone.json","name":"TrafficCone","title":"Traffic Cone","tags":["roadworks","tarmac","safety","block"],"categories":["transportation"]},{"source":"train-front-tunnel.json","name":"TrainFrontTunnel","title":"Train Front Tunnel","tags":["railway","metro","subway","underground","speed","bullet","fast","track","line"],"categories":["transportation","maps"]},{"source":"train-front.json","name":"TrainFront","title":"Train Front","tags":["railway","metro","subway","underground","high-speed","bullet","fast","track","line"],"categories":["transportation"]},{"source":"train-track.json","name":"TrainTrack","title":"Train Track","tags":["railway","line"],"categories":["transportation","maps"]},{"source":"tram-front.json","name":"TramFront","title":"Tram Front","tags":["railway","metro","subway","underground","track","line","tourism"],"categories":["transportation"]},{"source":"trash-2.json","name":"Trash2","title":"Trash 2","tags":["garbage","delete","remove","bin"],"categories":["files","mail"]},{"source":"trash.json","name":"Trash","title":"Trash","tags":["garbage","delete","remove","bin"],"categories":["files","mail"]},{"source":"tree-deciduous.json","name":"TreeDeciduous","title":"Tree Deciduous","tags":["tree","forest","park","nature"],"categories":["nature"]},{"source":"tree-pine.json","name":"TreePine","title":"Tree Pine","tags":["tree","pine","forest","park","nature"],"categories":["nature"]},{"source":"trees.json","name":"Trees","title":"Trees","tags":["tree","forest","park","nature"],"categories":["nature"]},{"source":"trello.json","name":"Trello","title":"Trello","tags":["logo","brand"],"categories":["account","brands","development"]},{"source":"trending-down.json","name":"TrendingDown","title":"Trending Down","tags":["statistics"],"categories":["charts","arrows"]},{"source":"trending-up.json","name":"TrendingUp","title":"Trending Up","tags":["statistics"],"categories":["charts","arrows"]},{"source":"triangle-right.json","name":"TriangleRight","title":"Triangle Right","tags":["volume","controls","controller","tv remote","geometry","delta","ramp","slope","incline","increase"],"categories":["shapes","maths"]},{"source":"triangle.json","name":"Triangle","title":"Triangle","tags":["equilateral","delta","shape","pyramid","hierarchy"],"categories":["shapes"]},{"source":"trophy.json","name":"Trophy","title":"Trophy","tags":["prize","sports","winner","achievement","award"],"categories":["sports","gaming"]},{"source":"truck.json","name":"Truck","title":"Truck","tags":["delivery","van","shipping","haulage","lorry"],"categories":["transportation"]},{"source":"turtle.json","name":"Turtle","title":"Turtle","tags":["animal","pet","tortoise","slow","speed"],"categories":["animals"]},{"source":"tv-2.json","name":"Tv2","title":"Tv 2","tags":["flatscreen","television","stream","display","widescreen","high-definition","hd","1080p","4k","8k","smart","digital","video","home cinema","entertainment","showtime","channels","catchup"],"categories":["devices","multimedia"]},{"source":"tv.json","name":"Tv","title":"Tv","tags":["television","stream","display","widescreen","high-definition","hd","1080p","4k","8k","smart","digital","video","entertainment","showtime","channels","terrestrial","satellite","cable","broadcast","live","frequency","tune","scan","aerial","receiver","transmission","signal","connection","connectivity"],"categories":["devices","multimedia","communication"]},{"source":"twitch.json","name":"Twitch","title":"Twitch","tags":["logo","social"],"categories":["brands","social","account","gaming"]},{"source":"twitter.json","name":"Twitter","title":"Twitter","tags":["logo","social"],"categories":["brands","social","account"]},{"source":"type.json","name":"Type","title":"Type","tags":["text","font","typography"],"categories":["text"]},{"source":"umbrella.json","name":"Umbrella","title":"Umbrella","tags":["rain","weather"],"categories":["weather"]},{"source":"underline.json","name":"Underline","title":"Underline","tags":["text","format"],"categories":["text"]},{"source":"undo-2.json","name":"Undo2","title":"Undo 2","tags":["redo","rerun","history","back","return","reverse","revert","direction","u-turn"],"categories":["text","arrows"]},{"source":"undo-dot.json","name":"UndoDot","title":"Undo Dot","tags":["redo","history","step","back"],"categories":["text","arrows"]},{"source":"undo.json","name":"Undo","title":"Undo","tags":["redo","rerun","history"],"categories":["text","arrows"]},{"source":"unfold-horizontal.json","name":"UnfoldHorizontal","title":"Unfold Horizontal","tags":["arrow","collapse","fold","vertical","dashed"],"categories":["arrows","layout"]},{"source":"unfold-vertical.json","name":"UnfoldVertical","title":"Unfold Vertical","tags":["arrow","expand","vertical","dashed"],"categories":["arrows","layout"]},{"source":"ungroup.json","name":"Ungroup","title":"Ungroup","tags":["cubes","packages","parts","units","collection","cluster","separate"],"categories":["shapes","files"]},{"source":"unlink-2.json","name":"Unlink2","title":"Unlink 2","tags":["url","unchain"],"categories":["text"]},{"source":"unlink.json","name":"Unlink","title":"Unlink","tags":["url","unchain"],"categories":["text"]},{"source":"unlock.json","name":"Unlock","title":"Unlock","tags":["security"],"categories":["security"]},{"source":"unplug.json","name":"Unplug","title":"Unplug","tags":["electricity","electronics","socket","outlet","disconnect"],"categories":["devices","development"]},{"source":"upload-cloud.json","name":"UploadCloud","title":"Upload Cloud","tags":["file"],"categories":["arrows","files"]},{"source":"upload.json","name":"Upload","title":"Upload","tags":["file"],"categories":["arrows","files"]},{"source":"usb.json","name":"Usb","title":"Usb","tags":["universal","serial","bus","controller","connector","interface"],"categories":["devices","multimedia","home"]},{"source":"user-2.json","name":"User2","title":"User 2","tags":["person","account","contact"],"categories":["account"]},{"source":"user-check-2.json","name":"UserCheck2","title":"User Check 2","tags":["followed","subscribed","done","todo","tick","complete","task"],"categories":["account"]},{"source":"user-check.json","name":"UserCheck","title":"User Check","tags":["followed","subscribed","done","todo","tick","complete","task"],"categories":["account"]},{"source":"user-circle-2.json","name":"UserCircle2","title":"User Circle 2","tags":["person","account","contact"],"categories":["account","shapes"]},{"source":"user-circle.json","name":"UserCircle","title":"User Circle","tags":["person","account","contact"],"categories":["account","shapes"]},{"source":"user-cog-2.json","name":"UserCog2","title":"User Cog 2","tags":["settings","edit","cog","gear"],"categories":["account"]},{"source":"user-cog.json","name":"UserCog","title":"User Cog","tags":["settings","edit","cog","gear"],"categories":["account"]},{"source":"user-minus-2.json","name":"UserMinus2","title":"User Minus 2","tags":["delete","remove","unfollow","unsubscribe"],"categories":["account"]},{"source":"user-minus.json","name":"UserMinus","title":"User Minus","tags":["delete","remove","unfollow","unsubscribe"],"categories":["account"]},{"source":"user-plus-2.json","name":"UserPlus2","title":"User Plus 2","tags":["new","add","create","follow","subscribe"],"categories":["account"]},{"source":"user-plus.json","name":"UserPlus","title":"User Plus","tags":["new","add","create","follow","subscribe"],"categories":["account"]},{"source":"user-square-2.json","name":"UserSquare2","title":"User Square 2","tags":["person","account","contact"],"categories":["account","shapes"]},{"source":"user-square.json","name":"UserSquare","title":"User Square","tags":["person","account","contact"],"categories":["account","shapes"]},{"source":"user-x-2.json","name":"UserX2","title":"User X 2","tags":["delete","remove","unfollow","unsubscribe","unavailable"],"categories":["account"]},{"source":"user-x.json","name":"UserX","title":"User X","tags":["delete","remove","unfollow","unsubscribe","unavailable"],"categories":["account"]},{"source":"user.json","name":"User","title":"User","tags":["person","account","contact"],"categories":["account"]},{"source":"users-2.json","name":"Users2","title":"Users 2","tags":["group","people"],"categories":["account"]},{"source":"users.json","name":"Users","title":"Users","tags":["group","people"],"categories":["account"]},{"source":"utensils-crossed.json","name":"UtensilsCrossed","title":"Utensils Crossed","tags":["food","restaurant","meal","cutlery","breakfast","dinner","supper"],"categories":["food-beverage","travel","maps"]},{"source":"utensils.json","name":"Utensils","title":"Utensils","tags":["food","restaurant","meal","cutlery","breakfast","dinner","supper"],"categories":["food-beverage","travel","maps"]},{"source":"utility-pole.json","name":"UtilityPole","title":"Utility Pole","tags":["electricity","energy","transmission line","telegraph pole","power lines"],"categories":["buildings","home","sustainability"]},{"source":"variable.json","name":"Variable","title":"Variable","tags":["code","coding","programming","symbol","calculate","algebra","x","parentheses","parenthesis","brackets","parameter","(",")"],"categories":["development","maths"]},{"source":"vegan.json","name":"Vegan","title":"Vegan","tags":["vegetarian","fruitarian","herbivorous","animal rights","diet"],"categories":["food-beverage","sustainability"]},{"source":"venetian-mask.json","name":"VenetianMask","title":"Venetian Mask","tags":["mask","masquerade","impersonate","secret","incognito"],"categories":["account","gaming"]},{"source":"vibrate-off.json","name":"VibrateOff","title":"Vibrate Off","tags":["smartphone","notification","rumble","haptic feedback","notifications","screen"],"categories":["devices","connectivity","account"]},{"source":"vibrate.json","name":"Vibrate","title":"Vibrate","tags":["smartphone","notification","rumble","haptic feedback","screen"],"categories":["devices","connectivity","account","notifications"]},{"source":"video-off.json","name":"VideoOff","title":"Video Off","tags":["camera","movie","film"],"categories":["devices","communication","connectivity","photography"]},{"source":"video.json","name":"Video","title":"Video","tags":["camera","movie","film","recording","motion picture","camcorder","reel"],"categories":["devices","communication","connectivity","photography"]},{"source":"videotape.json","name":"Videotape","title":"Videotape","tags":["vhs","movie","film","recording","motion picture","showreel","cassette"],"categories":["devices","communication","connectivity","photography","files"]},{"source":"view.json","name":"View","title":"View","tags":["eye","look"],"categories":["design","photography"]},{"source":"voicemail.json","name":"Voicemail","title":"Voicemail","tags":["phone","cassette","tape","reel","recording","audio"],"categories":["connectivity","devices","social"]},{"source":"volume-1.json","name":"Volume1","title":"Volume 1","tags":["music","sound","speaker"],"categories":["connectivity","communication","multimedia"]},{"source":"volume-2.json","name":"Volume2","title":"Volume 2","tags":["music","sound","speaker"],"categories":["connectivity","communication","multimedia"]},{"source":"volume-x.json","name":"VolumeX","title":"Volume X","tags":["music","sound","mute","speaker"],"categories":["connectivity","communication","multimedia"]},{"source":"volume.json","name":"Volume","title":"Volume","tags":["music","sound","mute","speaker"],"categories":["connectivity","communication","multimedia"]},{"source":"vote.json","name":"Vote","title":"Vote","tags":["vote","poll","ballot","political","social","check","tick"],"categories":["social"]},{"source":"wallet-2.json","name":"Wallet2","title":"Wallet 2","tags":["finance","pocket"],"categories":["account","money"]},{"source":"wallet-cards.json","name":"WalletCards","title":"Wallet Cards","tags":["money","finance","pocket","credit","purchase","payment","shopping","retail","consumer","cc"],"categories":["account","money"]},{"source":"wallet.json","name":"Wallet","title":"Wallet","tags":["money","finance","pocket"],"categories":["account","money"]},{"source":"wallpaper.json","name":"Wallpaper","title":"Wallpaper","tags":["cover","lock screen"],"categories":["account","devices"]},{"source":"wand-2.json","name":"Wand2","title":"Wand 2","tags":["magic","wizard"],"categories":["design","gaming","cursors","photography"]},{"source":"wand.json","name":"Wand","title":"Wand","tags":["magic","selection"],"categories":["design","gaming","cursors","photography"]},{"source":"warehouse.json","name":"Warehouse","title":"Warehouse","tags":["storage","logistics","building"],"categories":["buildings","maps"]},{"source":"watch.json","name":"Watch","title":"Watch","tags":["clock","time"],"categories":["time"]},{"source":"waves.json","name":"Waves","title":"Waves","tags":["water","sea","sound","hertz","wavelength","vibrate"],"categories":["weather","maps","multimedia"]},{"source":"webcam.json","name":"Webcam","title":"Webcam","tags":["camera","security"],"categories":["connectivity","devices","communication"]},{"source":"webhook.json","name":"Webhook","title":"Webhook","tags":["push api","interface","callback"],"categories":["development","social","account"]},{"source":"wheat-off.json","name":"WheatOff","title":"Wheat Off","tags":["corn","cereal","grain","gluten free","allergy","intolerance","diet"],"categories":["food-beverage"]},{"source":"wheat.json","name":"Wheat","title":"Wheat","tags":["corn","cereal","grain","gluten"],"categories":["food-beverage"]},{"source":"whole-word.json","name":"WholeWord","title":"Whole Word","tags":["text","selection","letters","characters","font","typography"],"categories":["text"]},{"source":"wifi-off.json","name":"WifiOff","title":"Wifi Off","tags":["disabled"],"categories":["connectivity","devices"]},{"source":"wifi.json","name":"Wifi","title":"Wifi","tags":["connection","signal","wireless"],"categories":["connectivity","devices"]},{"source":"wind.json","name":"Wind","title":"Wind","tags":["weather","air","blow"],"categories":["weather"]},{"source":"wine-off.json","name":"WineOff","title":"Wine Off","tags":["alcohol","beverage","drink","glass","alcohol free","abstinence","abstaining","teetotalism","allergy","intolerance"],"categories":["food-beverage"]},{"source":"wine.json","name":"Wine","title":"Wine","tags":["alcohol","beverage","bar","drink","glass","sommelier","vineyard","winery"],"categories":["food-beverage"]},{"source":"workflow.json","name":"Workflow","title":"Workflow","tags":["action","continuous integration","ci","automation","devops","network","node","connection"],"categories":["development"]},{"source":"wrap-text.json","name":"WrapText","title":"Wrap Text","tags":["words","lines","break","paragraph"],"categories":["text","arrows"]},{"source":"wrench.json","name":"Wrench","title":"Wrench","tags":["account","tool","settings","spanner"],"categories":["account","development","tools"]},{"source":"x-circle.json","name":"XCircle","title":"X Circle","tags":["cancel","close","delete","remove","times","clear","error","incorrect","wrong","mistake","failure","linter","multiply","multiplication"],"categories":["maths","shapes","development"]},{"source":"x-octagon.json","name":"XOctagon","title":"X Octagon","tags":["delete","stop","alert","warning","times","clear","maths"],"categories":["maths","shapes","notifications"]},{"source":"x-square.json","name":"XSquare","title":"X Square","tags":["cancel","close","delete","remove","times","clear","maths","multiply","multiplication"],"categories":["maths","shapes","notifications"]},{"source":"x.json","name":"X","title":"X","tags":["cancel","close","delete","remove","times","clear","maths","multiply","multiplication"],"categories":["notifications","maths"]},{"source":"youtube.json","name":"Youtube","title":"Youtube","tags":["logo","social","video","play"],"categories":["account","multimedia","social","text","brands"]},{"source":"zap-off.json","name":"ZapOff","title":"Zap Off","tags":["flash","camera","lightning"],"categories":["connectivity","devices","photography","weather"]},{"source":"zap.json","name":"Zap","title":"Zap","tags":["flash","camera","lightning"],"categories":["connectivity","devices","photography","weather"]},{"source":"zoom-in.json","name":"ZoomIn","title":"Zoom In","tags":["magnifying glass","plus"],"categories":["accessibility","layout","design","text","photography"]},{"source":"zoom-out.json","name":"ZoomOut","title":"Zoom Out","tags":["magnifying glass","plus"],"categories":["accessibility","layout","design","text","photography"]}] \ No newline at end of file diff --git a/openv0_server/library/shadcn/docs/accordion.mdx b/openv0_server/library/shadcn/docs/accordion.mdx new file mode 100644 index 0000000..41ca737 --- /dev/null +++ b/openv0_server/library/shadcn/docs/accordion.mdx @@ -0,0 +1,136 @@ +--- +title: Accordion +description: A vertically stacked set of interactive headings that each reveal a section of content. +component: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/accordion + api: https://www.radix-ui.com/docs/primitives/components/accordion#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + + + + +Run the following command: + +```bash +npx shadcn-ui@latest add accordion +``` + +Update `tailwind.config.js` + +Add the following animations to your `tailwind.config.js` file: + +```js title="tailwind.config.js" {5-18} +/** @type {import('tailwindcss').Config} */ +module.exports = { + theme: { + extend: { + keyframes: { + "accordion-down": { + from: { height: 0 }, + to: { height: "var(--radix-accordion-content-height)" }, + }, + "accordion-up": { + from: { height: "var(--radix-accordion-content-height)" }, + to: { height: 0 }, + }, + }, + animation: { + "accordion-down": "accordion-down 0.2s ease-out", + "accordion-up": "accordion-up 0.2s ease-out", + }, + }, + }, +} +``` + + + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-accordion +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + +Update `tailwind.config.js` + +Add the following animations to your `tailwind.config.js` file: + +```js title="tailwind.config.js" {5-18} +/** @type {import('tailwindcss').Config} */ +module.exports = { + theme: { + extend: { + keyframes: { + "accordion-down": { + from: { height: 0 }, + to: { height: "var(--radix-accordion-content-height)" }, + }, + "accordion-up": { + from: { height: "var(--radix-accordion-content-height)" }, + to: { height: 0 }, + }, + }, + animation: { + "accordion-down": "accordion-down 0.2s ease-out", + "accordion-up": "accordion-up 0.2s ease-out", + }, + }, + }, +} +``` + + + + + + + +## Usage + +```tsx +import { + Accordion, + AccordionContent, + AccordionItem, + AccordionTrigger, +} from "@/components/ui/accordion" +``` + +```tsx + + + Is it accessible? + + Yes. It adheres to the WAI-ARIA design pattern. + + + +``` diff --git a/openv0_server/library/shadcn/docs/alert-dialog.mdx b/openv0_server/library/shadcn/docs/alert-dialog.mdx new file mode 100644 index 0000000..4439696 --- /dev/null +++ b/openv0_server/library/shadcn/docs/alert-dialog.mdx @@ -0,0 +1,84 @@ +--- +title: Alert Dialog +description: A modal dialog that interrupts the user with important content and expects a response. +featured: true +component: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/alert-dialog + api: https://www.radix-ui.com/docs/primitives/components/alert-dialog#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add alert-dialog +``` + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-alert-dialog +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { + AlertDialog, + AlertDialogAction, + AlertDialogCancel, + AlertDialogContent, + AlertDialogDescription, + AlertDialogFooter, + AlertDialogHeader, + AlertDialogTitle, + AlertDialogTrigger, +} from "@/components/ui/alert-dialog" +``` + +```tsx + + Open + + + Are you absolutely sure? + + This action cannot be undone. This will permanently delete your account + and remove your data from our servers. + + + + Cancel + Continue + + + +``` diff --git a/openv0_server/library/shadcn/docs/alert.mdx b/openv0_server/library/shadcn/docs/alert.mdx new file mode 100644 index 0000000..e3e55ef --- /dev/null +++ b/openv0_server/library/shadcn/docs/alert.mdx @@ -0,0 +1,65 @@ +--- +title: Alert +description: Displays a callout for user attention. +component: true +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add alert +``` + + + + + + + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert" +``` + +```tsx + + + Heads up! + + You can add components and dependencies to your app using the cli. + + +``` + +## Examples + +### Default + + + +### Destructive + + diff --git a/openv0_server/library/shadcn/docs/aspect-ratio.mdx b/openv0_server/library/shadcn/docs/aspect-ratio.mdx new file mode 100644 index 0000000..7292ac0 --- /dev/null +++ b/openv0_server/library/shadcn/docs/aspect-ratio.mdx @@ -0,0 +1,64 @@ +--- +title: Aspect Ratio +description: Displays content within a desired ratio. +component: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/aspect-ratio + api: https://www.radix-ui.com/docs/primitives/components/aspect-ratio#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add aspect-ratio +``` + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-aspect-ratio +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import Image from "next/image" + +import { AspectRatio } from "@/components/ui/aspect-ratio" +``` + +```tsx +
+ + Image + +
+``` diff --git a/openv0_server/library/shadcn/docs/avatar.mdx b/openv0_server/library/shadcn/docs/avatar.mdx new file mode 100644 index 0000000..defd9dd --- /dev/null +++ b/openv0_server/library/shadcn/docs/avatar.mdx @@ -0,0 +1,61 @@ +--- +title: Avatar +description: An image element with a fallback for representing the user. +component: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/avatar + api: https://www.radix-ui.com/docs/primitives/components/avatar#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add avatar +``` + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-avatar +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar" +``` + +```tsx + + + CN + +``` diff --git a/openv0_server/library/shadcn/docs/badge.mdx b/openv0_server/library/shadcn/docs/badge.mdx new file mode 100644 index 0000000..929c42b --- /dev/null +++ b/openv0_server/library/shadcn/docs/badge.mdx @@ -0,0 +1,82 @@ +--- +title: Badge +description: Displays a badge or a component that looks like a badge. +component: true +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add badge +``` + + + + + + + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { Badge } from "@/components/ui/badge" +``` + +```tsx +Badge +``` + +### Link + +You can use the `badgeVariants` helper to create a link that looks like a badge. + +```tsx +import { badgeVariants } from "@/components/ui/badge" +Badge +``` + +## Examples + +### Default + + + +--- + +### Secondary + + + +--- + +### Outline + + + +--- + +### Destructive + + diff --git a/openv0_server/library/shadcn/docs/button.mdx b/openv0_server/library/shadcn/docs/button.mdx new file mode 100644 index 0000000..86c52cc --- /dev/null +++ b/openv0_server/library/shadcn/docs/button.mdx @@ -0,0 +1,109 @@ +--- +title: Button +description: Displays a button or a component that looks like a button. +featured: true +component: true +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add button +``` + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-slot +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { Button } from "@/components/ui/button" +``` + +```tsx + +``` + +## Link + +You can use the `buttonVariants` helper to create a link that looks like a button. + + +```tsx +import { buttonVariants } from "@/components/ui/button" +Click here +``` + + +## Examples + +### Primary + + + +### Secondary + + + +### Destructive + + + +### Outline + + + +### Ghost + + + +### Link + + + +### Icon + + + +### With Icon + + + +### Loading + + + +### As Child + + diff --git a/openv0_server/library/shadcn/docs/calendar.mdx b/openv0_server/library/shadcn/docs/calendar.mdx new file mode 100644 index 0000000..f276a9d --- /dev/null +++ b/openv0_server/library/shadcn/docs/calendar.mdx @@ -0,0 +1,84 @@ +--- +title: Calendar +description: A date field component that allows users to enter and edit date. +component: true +--- + + + +## About + +The `Calendar` component is built on top of [React DayPicker](https://react-day-picker.js.org). + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add calendar +``` + + + + + + + +Install the following dependencies: + +```bash +npm install react-day-picker date-fns +``` + +Add the `Button` component to your project. + +The `Calendar` component uses the `Button` component. Make sure you have it installed in your project. + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { Calendar } from "@/components/ui/calendar" +``` + +```tsx +const [date, setDate] = React.useState(new Date()) + +return ( + +) +``` + +See the [React DayPicker](https://react-day-picker.js.org) documentation for more information. + +## Date Picker + +You can use the `` component to build a date picker. See the [Date Picker](/docs/components/date-picker) page for more information. + +## Examples + +### Form + + diff --git a/openv0_server/library/shadcn/docs/card.mdx b/openv0_server/library/shadcn/docs/card.mdx new file mode 100644 index 0000000..d4c1309 --- /dev/null +++ b/openv0_server/library/shadcn/docs/card.mdx @@ -0,0 +1,71 @@ +--- +title: Card +description: Displays a card with header, content, and footer. +component: true +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add card +``` + + + + + + + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { + Card, + CardContent, + CardDescription, + CardFooter, + CardHeader, + CardTitle, +} from "@/components/ui/card" +``` + +```tsx + + + Card Title + Card Description + + +

Card Content

+
+ +

Card Footer

+
+
+``` + +## Examples + + diff --git a/openv0_server/library/shadcn/docs/checkbox.mdx b/openv0_server/library/shadcn/docs/checkbox.mdx new file mode 100644 index 0000000..e8be109 --- /dev/null +++ b/openv0_server/library/shadcn/docs/checkbox.mdx @@ -0,0 +1,74 @@ +--- +title: Checkbox +description: A control that allows the user to toggle between checked and not checked. +component: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/checkbox + api: https://www.radix-ui.com/docs/primitives/components/checkbox#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add checkbox +``` + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-checkbox +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { Checkbox } from "@/components/ui/checkbox" +``` + +```tsx + +``` + +## Examples + +### With text + + + +### Disabled + + + +### Form + + + + diff --git a/openv0_server/library/shadcn/docs/collapsible.mdx b/openv0_server/library/shadcn/docs/collapsible.mdx new file mode 100644 index 0000000..f95fb03 --- /dev/null +++ b/openv0_server/library/shadcn/docs/collapsible.mdx @@ -0,0 +1,69 @@ +--- +title: Collapsible +description: An interactive component which expands/collapses a panel. +component: true +featured: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/collapsible + api: https://www.radix-ui.com/docs/primitives/components/collapsible#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add collapsible +``` + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-collapsible +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { + Collapsible, + CollapsibleContent, + CollapsibleTrigger, +} from "@/components/ui/collapsible" +``` + +```tsx + + Can I use this in my project? + + Yes. Free to use for personal and commercial projects. No attribution + required. + + +``` diff --git a/openv0_server/library/shadcn/docs/combobox.mdx b/openv0_server/library/shadcn/docs/combobox.mdx new file mode 100644 index 0000000..7f8b537 --- /dev/null +++ b/openv0_server/library/shadcn/docs/combobox.mdx @@ -0,0 +1,126 @@ +--- +title: Combobox +description: Autocomplete input and command palette with a list of suggestions. +component: true +--- + + + +## Installation + +The Combobox is built using a composition of the `` and the `` components. + +See installation instructions for the [Popover](/docs/components/popover#installation) and the [Command](/docs/components/command#installation) components. + +## Usage + +```tsx +"use client" + +import * as React from "react" +import { Check, ChevronsUpDown } from "lucide-react" + +import { cn } from "@/lib/utils" +import { Button } from "@/components/ui/button" +import { + Command, + CommandEmpty, + CommandGroup, + CommandInput, + CommandItem, +} from "@/components/ui/command" +import { + Popover, + PopoverContent, + PopoverTrigger, +} from "@/components/ui/popover" + +const frameworks = [ + { + value: "next.js", + label: "Next.js", + }, + { + value: "sveltekit", + label: "SvelteKit", + }, + { + value: "nuxt.js", + label: "Nuxt.js", + }, + { + value: "remix", + label: "Remix", + }, + { + value: "astro", + label: "Astro", + }, +] + +export function ComboboxDemo() { + const [open, setOpen] = React.useState(false) + const [value, setValue] = React.useState("") + + return ( + + + + + + + + No framework found. + + {frameworks.map((framework) => ( + { + setValue(currentValue === value ? "" : currentValue) + setOpen(false) + }} + > + + {framework.label} + + ))} + + + + + ) +} +``` + +## Examples + +### Combobox + + + +### Popover + + + +### Dropdown menu + + + +### Form + + diff --git a/openv0_server/library/shadcn/docs/command.mdx b/openv0_server/library/shadcn/docs/command.mdx new file mode 100644 index 0000000..4459f98 --- /dev/null +++ b/openv0_server/library/shadcn/docs/command.mdx @@ -0,0 +1,132 @@ +--- +title: Command +description: Fast, composable, unstyled command menu for React. +component: true +--- + + + +## About + +The `` component uses the [`cmdk`](https://cmdk.paco.me) component by [pacocoursey](https://twitter.com/pacocoursey). + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add command +``` + + + + + + + +Install the following dependencies: + +```bash +npm install cmdk +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { + Command, + CommandDialog, + CommandEmpty, + CommandGroup, + CommandInput, + CommandItem, + CommandList, + CommandSeparator, + CommandShortcut, +} from "@/components/ui/command" +``` + +```tsx + + + + No results found. + + Calendar + Search Emoji + Calculator + + + + Profile + Billing + Settings + + + +``` + +## Examples + +### Dialog + + + +To show the command menu in a dialog, use the `` component. + +```tsx +export function CommandMenu() { + const [open, setOpen] = React.useState(false) + + React.useEffect(() => { + const down = (e: KeyboardEvent) => { + if (e.key === "k" && (e.metaKey || e.ctrlKey)) { + e.preventDefault() + setOpen((open) => !open) + } + } + document.addEventListener("keydown", down) + return () => document.removeEventListener("keydown", down) + }, []) + + return ( + + + + No results found. + + Calendar + Search Emoji + Calculator + + + + ) +} +``` + +### Combobox + +You can use the `` component as a combobox. See the [Combobox](/docs/components/combobox) page for more information. diff --git a/openv0_server/library/shadcn/docs/context-menu.mdx b/openv0_server/library/shadcn/docs/context-menu.mdx new file mode 100644 index 0000000..d009763 --- /dev/null +++ b/openv0_server/library/shadcn/docs/context-menu.mdx @@ -0,0 +1,71 @@ +--- +title: Context Menu +description: Displays a menu to the user — such as a set of actions or functions — triggered by a button. +component: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/context-menu + api: https://www.radix-ui.com/docs/primitives/components/context-menu#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add context-menu +``` + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-context-menu +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { + ContextMenu, + ContextMenuContent, + ContextMenuItem, + ContextMenuTrigger, +} from "@/components/ui/context-menu" +``` + +```tsx + + Right click + + Profile + Billing + Team + Subscription + + +``` diff --git a/openv0_server/library/shadcn/docs/date-picker.mdx b/openv0_server/library/shadcn/docs/date-picker.mdx new file mode 100644 index 0000000..040dbf8 --- /dev/null +++ b/openv0_server/library/shadcn/docs/date-picker.mdx @@ -0,0 +1,81 @@ +--- +title: Date Picker +description: A date picker component with range and presets. +component: true +--- + + + +## Installation + +The Date Picker is built using a composition of the `` and the `` components. + +See installation instructions for the [Popover](/docs/components/popover#installation) and the [Calendar](/docs/components/calendar#installation) components. + +## Usage + +```tsx +"use client" + +import * as React from "react" +import { format } from "date-fns" +import { Calendar as CalendarIcon } from "lucide-react" + +import { cn } from "@/lib/utils" +import { Button } from "@/components/ui/button" +import { Calendar } from "@/components/ui/calendar" +import { + Popover, + PopoverContent, + PopoverTrigger, +} from "@/components/ui/popover" + +export function DatePickerDemo() { + const [date, setDate] = React.useState() + + return ( + + + + + + + + + ) +} +``` + +See the [React DayPicker](https://react-day-picker.js.org) documentation for more information. + +## Examples + +### Date Picker + + + +### Date Range Picker + + + +### With Presets + + + +### Form + + diff --git a/openv0_server/library/shadcn/docs/dialog.mdx b/openv0_server/library/shadcn/docs/dialog.mdx new file mode 100644 index 0000000..d617754 --- /dev/null +++ b/openv0_server/library/shadcn/docs/dialog.mdx @@ -0,0 +1,111 @@ +--- +title: Dialog +description: A window overlaid on either the primary window or another dialog window, rendering the content underneath inert. +featured: true +component: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/dialog + api: https://www.radix-ui.com/docs/primitives/components/dialog#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add dialog +``` + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-dialog +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { + Dialog, + DialogContent, + DialogDescription, + DialogHeader, + DialogTitle, + DialogTrigger, +} from "@/components/ui/dialog" +``` + +```tsx + + Open + + + Are you sure absolutely sure? + + This action cannot be undone. This will permanently delete your account + and remove your data from our servers. + + + + +``` + +## Notes + +To activate the `Dialog` component from within a `Context Menu` or `Dropdown Menu`, you must encase the `Context Menu` or +`Dropdown Menu` component in the `Dialog` component. For more information, refer to the linked issue [here](https://github.com/radix-ui/primitives/issues/1836). + +```tsx {14-25} + + + Right click + + Open + Download + + + Delete + + + + + + + Are you sure absolutely sure? + + This action cannot be undone. Are you sure you want to permanently + delete this file from our servers? + + + + + + + +``` diff --git a/openv0_server/library/shadcn/docs/dropdown-menu.mdx b/openv0_server/library/shadcn/docs/dropdown-menu.mdx new file mode 100644 index 0000000..6f16fb9 --- /dev/null +++ b/openv0_server/library/shadcn/docs/dropdown-menu.mdx @@ -0,0 +1,86 @@ +--- +title: Dropdown Menu +description: Displays a menu to the user — such as a set of actions or functions — triggered by a button. +featured: true +component: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/dropdown-menu + api: https://www.radix-ui.com/docs/primitives/components/dropdown-menu#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add dropdown-menu +``` + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-dropdown-menu +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { + DropdownMenu, + DropdownMenuContent, + DropdownMenuItem, + DropdownMenuLabel, + DropdownMenuSeparator, + DropdownMenuTrigger, +} from "@/components/ui/dropdown-menu" +``` + +```tsx + + Open + + My Account + + Profile + Billing + Team + Subscription + + +``` + +## Examples + +### Checkboxes + + + +### Radio Group + + diff --git a/openv0_server/library/shadcn/docs/form.mdx b/openv0_server/library/shadcn/docs/form.mdx new file mode 100644 index 0000000..02824dd --- /dev/null +++ b/openv0_server/library/shadcn/docs/form.mdx @@ -0,0 +1,251 @@ +--- +title: React Hook Form +description: Building forms with React Hook Form and Zod. +--- + +Forms are tricky. They are one of the most common things you'll build in a web application, but also one of the most complex. + +Well-designed HTML forms are: + +- Well-structured and semantically correct. +- Easy to use and navigate (keyboard). +- Accessible with ARIA attributes and proper labels. +- Has support for client and server side validation. +- Well-styled and consistent with the rest of the application. + +In this guide, we will take a look at building forms with [`react-hook-form`](https://react-hook-form.com/) and [`zod`](https://zod.dev). We're going to use a `` component to compose accessible forms using Radix UI components. + +## Features + +The `
` component is a wrapper around the `react-hook-form` library. It provides a few things: + +- Composable components for building forms. +- A `` component for building controlled form fields. +- Form validation using `zod`. +- Handles accessibility and error messages. +- Uses `React.useId()` for generating unique IDs. +- Applies the correct `aria` attributes to form fields based on states. +- Built to work with all Radix UI components. +- Bring your own schema library. We use `zod` but you can use anything you want. +- **You have full control over the markup and styling.** + +## Anatomy + +```tsx + + ( + + + + { /* Your form field */} + + + + + )} + /> + +``` + +## Example + +```tsx +const form = useForm() + + ( + + Username + + + + This is your public display name. + + + )} +/> +``` + +## Installation + + + + + CLI + Manual + + + + + +### Command + +```bash +npx shadcn-ui@latest add form +``` + + + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-label @radix-ui/react-slot react-hook-form @hookform/resolvers zod +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + + + +### Create a form schema + +Define the shape of your form using a Zod schema. You can read more about using Zod in the [Zod documentation](https://zod.dev). + +```tsx showLineNumbers {4,6-8} +"use client" + +import * as z from "zod" + +const formSchema = z.object({ + username: z.string().min(2).max(50), +}) +``` + +### Define a form + +Use the `useForm` hook from `react-hook-form` to create a form. + +```tsx showLineNumbers {4,14-20,22-27} +"use client" + +import { zodResolver } from "@hookform/resolvers/zod" +import * as z from "zod" + +const formSchema = z.object({ + username: z.string().min(2, { + message: "Username must be at least 2 characters.", + }), +}) + +export function ProfileForm() { + // 1. Define your form. + const form = useForm>({ + resolver: zodResolver(formSchema), + defaultValues: { + username: "", + }, + }) + + // 2. Define a submit handler. + function onSubmit(values: z.infer) { + // Do something with the form values. + // ✅ This will be type-safe and validated. + console.log(values) + } +} +``` + +Since `FormField` is using a controlled component, you need to provide a default value for the field. See the [React Hook Form docs](https://react-hook-form.com/docs/usecontroller) to learn more about controlled components. + +### Build your form + +We can now use the `
` components to build our form. + +```tsx showLineNumbers {7-17,28-50} +"use client" + +import { zodResolver } from "@hookform/resolvers/zod" +import * as z from "zod" + +import { Button } from "@/components/ui/button" +import { + Form, + FormControl, + FormDescription, + FormField, + FormItem, + FormLabel, + FormMessage, +} from "@/components/ui/form" +import { Input } from "@/components/ui/input" + +const formSchema = z.object({ + username: z.string().min(2, { + message: "Username must be at least 2 characters.", + }), +}) + +export function ProfileForm() { + // ... + + return ( + + + ( + + Username + + + + + This is your public display name. + + + + )} + /> + + + + ) +} +``` + +### Done + +That's it. You now have a fully accessible form that is type-safe with client-side validation. + + + +
+ +## Examples + +See the following links for more examples on how to use the `
` component with other components: + +- [Checkbox](/docs/components/checkbox#form) +- [Date Picker](/docs/components/date-picker#form) +- [Input](/docs/components/input#form) +- [Radio Group](/docs/components/radio-group#form) +- [Select](/docs/components/select#form) +- [Switch](/docs/components/switch#form) +- [Textarea](/docs/components/textarea#form) +- [Combobox](/docs/components/combobox#form) diff --git a/openv0_server/library/shadcn/docs/hover-card.mdx b/openv0_server/library/shadcn/docs/hover-card.mdx new file mode 100644 index 0000000..974e9ef --- /dev/null +++ b/openv0_server/library/shadcn/docs/hover-card.mdx @@ -0,0 +1,67 @@ +--- +title: Hover Card +description: For sighted users to preview content available behind a link. +component: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/hover-card + api: https://www.radix-ui.com/docs/primitives/components/hover-card#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add hover-card +``` + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-hover-card +``` + + + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { + HoverCard, + HoverCardContent, + HoverCardTrigger, +} from "@/components/ui/hover-card" +``` + +```tsx + + Hover + + The React Framework – created and maintained by @vercel. + + +``` diff --git a/openv0_server/library/shadcn/docs/input.mdx b/openv0_server/library/shadcn/docs/input.mdx new file mode 100644 index 0000000..af4bdfb --- /dev/null +++ b/openv0_server/library/shadcn/docs/input.mdx @@ -0,0 +1,75 @@ +--- +title: Input +description: Displays a form input field or a component that looks like an input field. +component: true +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add input +``` + + + + + + + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { Input } from "@/components/ui/input" +``` + +```tsx + +``` + +## Examples + +### Default + + + +### File + + + +### Disabled + + + +### With Label + + + +### With Button + + + +### Form + + diff --git a/openv0_server/library/shadcn/docs/label.mdx b/openv0_server/library/shadcn/docs/label.mdx new file mode 100644 index 0000000..1cfaec6 --- /dev/null +++ b/openv0_server/library/shadcn/docs/label.mdx @@ -0,0 +1,58 @@ +--- +title: Label +description: Renders an accessible label associated with controls. +component: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/label + api: https://www.radix-ui.com/docs/primitives/components/label#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add label +``` + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-label +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { Label } from "@/components/ui/label" +``` + +```tsx + +``` diff --git a/openv0_server/library/shadcn/docs/menubar.mdx b/openv0_server/library/shadcn/docs/menubar.mdx new file mode 100644 index 0000000..3dd554e --- /dev/null +++ b/openv0_server/library/shadcn/docs/menubar.mdx @@ -0,0 +1,80 @@ +--- +title: Menubar +description: A visually persistent menu common in desktop applications that provides quick access to a consistent set of commands. +component: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/menubar + api: https://www.radix-ui.com/docs/primitives/components/menubar#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add menubar +``` + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-menubar +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { + Menubar, + MenubarContent, + MenubarItem, + MenubarMenu, + MenubarSeparator, + MenubarShortcut, + MenubarTrigger, +} from "@/components/ui/menubar" +``` + +```tsx + + + File + + + New Tab ⌘T + + New Window + + Share + + Print + + + +``` diff --git a/openv0_server/library/shadcn/docs/navigation-menu.mdx b/openv0_server/library/shadcn/docs/navigation-menu.mdx new file mode 100644 index 0000000..d65c181 --- /dev/null +++ b/openv0_server/library/shadcn/docs/navigation-menu.mdx @@ -0,0 +1,98 @@ +--- +title: Navigation Menu +description: A collection of links for navigating websites. +component: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/navigation-menu + api: https://www.radix-ui.com/docs/primitives/components/navigation-menu#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add navigation-menu +``` + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-navigation-menu +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { + NavigationMenu, + NavigationMenuContent, + NavigationMenuIndicator, + NavigationMenuItem, + NavigationMenuLink, + NavigationMenuList, + NavigationMenuTrigger, + NavigationMenuViewport, +} from "@/components/ui/navigation-menu" +``` + +```tsx + + + + Item One + + Link + + + + +``` + +## Examples + +### Link Component + +When using the Next.js `` component, you can use `navigationMenuTriggerStyle()` to apply the correct styles to the trigger. + +```tsx +import { navigationMenuTriggerStyle } from "@/components/ui/navigation-menu" +``` + +```tsx {3-5} + + + + Documentation + + + +``` + +See also the [Radix UI documentation](https://www.radix-ui.com/docs/primitives/components/navigation-menu#with-client-side-routing) for handling client side routing. diff --git a/openv0_server/library/shadcn/docs/popover.mdx b/openv0_server/library/shadcn/docs/popover.mdx new file mode 100644 index 0000000..0179f16 --- /dev/null +++ b/openv0_server/library/shadcn/docs/popover.mdx @@ -0,0 +1,65 @@ +--- +title: Popover +description: Displays rich content in a portal, triggered by a button. +component: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/popover + api: https://www.radix-ui.com/docs/primitives/components/popover#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add popover +``` + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-popover +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { + Popover, + PopoverContent, + PopoverTrigger, +} from "@/components/ui/popover" +``` + +```tsx + + Open + Place content for the popover here. + +``` diff --git a/openv0_server/library/shadcn/docs/progress.mdx b/openv0_server/library/shadcn/docs/progress.mdx new file mode 100644 index 0000000..0274dba --- /dev/null +++ b/openv0_server/library/shadcn/docs/progress.mdx @@ -0,0 +1,58 @@ +--- +title: Progress +description: Displays an indicator showing the completion progress of a task, typically displayed as a progress bar. +component: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/progress + api: https://www.radix-ui.com/docs/primitives/components/progress#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add progress +``` + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-progress +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { Progress } from "@/components/ui/progress" +``` + +```tsx + +``` diff --git a/openv0_server/library/shadcn/docs/radio-group.mdx b/openv0_server/library/shadcn/docs/radio-group.mdx new file mode 100644 index 0000000..e18d0dd --- /dev/null +++ b/openv0_server/library/shadcn/docs/radio-group.mdx @@ -0,0 +1,74 @@ +--- +title: Radio Group +description: A set of checkable buttons—known as radio buttons—where no more than one of the buttons can be checked at a time. +component: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/radio-group + api: https://www.radix-ui.com/docs/primitives/components/radio-group#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add radio-group +``` + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-radio-group +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { Label } from "@/components/ui/label" +import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group" +``` + +```tsx + +
+ + +
+
+ + +
+
+``` + +## Examples + +### Form + + diff --git a/openv0_server/library/shadcn/docs/scroll-area.mdx b/openv0_server/library/shadcn/docs/scroll-area.mdx new file mode 100644 index 0000000..65e0cc3 --- /dev/null +++ b/openv0_server/library/shadcn/docs/scroll-area.mdx @@ -0,0 +1,65 @@ +--- +title: Scroll Area +description: Augments native scroll functionality for custom, cross-browser styling. +component: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/scroll-area + api: https://www.radix-ui.com/docs/primitives/components/scroll-area#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add scroll-area +``` + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-scroll-area +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { ScrollArea } from "@/components/ui/scroll-area" +``` + +```tsx + + Jokester began sneaking into the castle in the middle of the night and leaving + jokes all over the place: under the king's pillow, in his soup, even in the + royal toilet. The king was furious, but he couldn't seem to stop Jokester. And + then, one day, the people of the kingdom discovered that the jokes left by + Jokester were so funny that they couldn't help but laugh. And once they + started laughing, they couldn't stop. + +``` diff --git a/openv0_server/library/shadcn/docs/select.mdx b/openv0_server/library/shadcn/docs/select.mdx new file mode 100644 index 0000000..d1f7f40 --- /dev/null +++ b/openv0_server/library/shadcn/docs/select.mdx @@ -0,0 +1,80 @@ +--- +title: Select +description: Displays a list of options for the user to pick from—triggered by a button. +component: true +featured: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/select + api: https://www.radix-ui.com/docs/primitives/components/select#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add select +``` + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-select +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { + Select, + SelectContent, + SelectItem, + SelectTrigger, + SelectValue, +} from "@/components/ui/select" +``` + +```tsx + +``` + +## Examples + +### Form + + diff --git a/openv0_server/library/shadcn/docs/separator.mdx b/openv0_server/library/shadcn/docs/separator.mdx new file mode 100644 index 0000000..17ac178 --- /dev/null +++ b/openv0_server/library/shadcn/docs/separator.mdx @@ -0,0 +1,57 @@ +--- +title: Separator +description: Visually or semantically separates content. +component: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/separator + api: https://www.radix-ui.com/docs/primitives/components/separator#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add separator +``` + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-separator +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { Separator } from "@/components/ui/separator" +``` + +```tsx + +``` diff --git a/openv0_server/library/shadcn/docs/sheet.mdx b/openv0_server/library/shadcn/docs/sheet.mdx new file mode 100644 index 0000000..6d6190f --- /dev/null +++ b/openv0_server/library/shadcn/docs/sheet.mdx @@ -0,0 +1,103 @@ +--- +title: Sheet +description: Extends the Dialog component to display content that complements the main content of the screen. +component: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/dialog + api: https://www.radix-ui.com/docs/primitives/components/dialog#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add sheet +``` + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-dialog +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +### Usage + +```tsx +import { + Sheet, + SheetContent, + SheetDescription, + SheetHeader, + SheetTitle, + SheetTrigger, +} from "@/components/ui/sheet" +``` + +```tsx + + Open + + + Are you sure absolutely sure? + + This action cannot be undone. This will permanently delete your account + and remove your data from our servers. + + + + +``` + +## Examples + +### Side + +Use the `side` property to `` to indicate the edge of the screen where the component will appear. The values can be `top`, `right`, `bottom` or `left`. + + + +### Size + +You can adjust the size of the sheet using CSS classes: + +```tsx {3} + + Open + + + Are you sure absolutely sure? + + This action cannot be undone. This will permanently delete your account + and remove your data from our servers. + + + + +``` diff --git a/openv0_server/library/shadcn/docs/skeleton.mdx b/openv0_server/library/shadcn/docs/skeleton.mdx new file mode 100644 index 0000000..173fa9c --- /dev/null +++ b/openv0_server/library/shadcn/docs/skeleton.mdx @@ -0,0 +1,49 @@ +--- +title: Skeleton +description: Use to show a placeholder while content is loading. +component: true +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add skeleton +``` + + + + + + + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { Skeleton } from "@/components/ui/skeleton" +``` + +```tsx + +``` diff --git a/openv0_server/library/shadcn/docs/slider.mdx b/openv0_server/library/shadcn/docs/slider.mdx new file mode 100644 index 0000000..02b4a58 --- /dev/null +++ b/openv0_server/library/shadcn/docs/slider.mdx @@ -0,0 +1,58 @@ +--- +title: Slider +description: An input where the user selects a value from within a given range. +component: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/slider + api: https://www.radix-ui.com/docs/primitives/components/slider#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add slider +``` + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-slider +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { Slider } from "@/components/ui/slider" +``` + +```tsx + +``` diff --git a/openv0_server/library/shadcn/docs/switch.mdx b/openv0_server/library/shadcn/docs/switch.mdx new file mode 100644 index 0000000..dcae9ff --- /dev/null +++ b/openv0_server/library/shadcn/docs/switch.mdx @@ -0,0 +1,64 @@ +--- +title: Switch +description: A control that allows the user to toggle between checked and not checked. +component: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/switch + api: https://www.radix-ui.com/docs/primitives/components/switch#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add switch +``` + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-switch +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { Switch } from "@/components/ui/switch" +``` + +```tsx + +``` + +## Examples + +### Form + + diff --git a/openv0_server/library/shadcn/docs/table.mdx b/openv0_server/library/shadcn/docs/table.mdx new file mode 100644 index 0000000..64b3f0e --- /dev/null +++ b/openv0_server/library/shadcn/docs/table.mdx @@ -0,0 +1,83 @@ +--- +title: Table +description: A responsive table component. +component: true +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add table +``` + + + + + + + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { + Table, + TableBody, + TableCaption, + TableCell, + TableHead, + TableHeader, + TableRow, +} from "@/components/ui/table" +``` + +```tsx + + A list of your recent invoices. + + + Invoice + Status + Method + Amount + + + + + INV001 + Paid + Credit Card + $250.00 + + +
+``` + +## Data Table + +You can use the `` component to build more complex data tables. Combine it with [@tanstack/react-table](https://tanstack.com/table/v8) to create tables with sorting, filtering and pagination. + +See the [Data Table](/docs/components/data-table) documentation for more information. + +You can also see an example of a data table in the [Tasks](/examples/tasks) demo. diff --git a/openv0_server/library/shadcn/docs/tabs.mdx b/openv0_server/library/shadcn/docs/tabs.mdx new file mode 100644 index 0000000..3f01fbd --- /dev/null +++ b/openv0_server/library/shadcn/docs/tabs.mdx @@ -0,0 +1,65 @@ +--- +title: Tabs +description: A set of layered sections of content—known as tab panels—that are displayed one at a time. +component: true +radix: + link: https://www.radix-ui.com/docs/primitives/components/tabs + api: https://www.radix-ui.com/docs/primitives/components/tabs#api-reference +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add tabs +``` + + + + + + + +Install the following dependencies: + +```bash +npm install @radix-ui/react-tabs +``` + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs" +``` + +```tsx + + + Account + Password + + Make changes to your account here. + Change your password here. + +``` diff --git a/openv0_server/library/shadcn/docs/textarea.mdx b/openv0_server/library/shadcn/docs/textarea.mdx new file mode 100644 index 0000000..bafe124 --- /dev/null +++ b/openv0_server/library/shadcn/docs/textarea.mdx @@ -0,0 +1,75 @@ +--- +title: Textarea +description: Displays a form textarea or a component that looks like a textarea. +component: true +--- + + + +## Installation + + + + + CLI + Manual + + + +```bash +npx shadcn-ui@latest add textarea +``` + + + + + + + +Copy and paste the following code into your project. + + + +Update the import paths to match your project setup. + + + + + + + +## Usage + +```tsx +import { Textarea } from "@/components/ui/textarea" +``` + +```tsx +