# xun-icons **Repository Path**: pengjielee/xun-icons ## Basic Information - **Project Name**: xun-icons - **Description**: 同步于:https://github.com/pengjielee/xun-icons - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-11-03 - **Last Updated**: 2023-05-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Xun Icons for React ## Install use `npm` ```node npm i xun-icons ``` or use `yarn` ```node yarn add xun-icons ``` ## Usage ``` import React from "react"; import ReactDOM from "react-dom"; import { Add, ArrowRight, Back, CheckedSquare, Checked, Clear, Close, Close2, Database, Default as ErrorDefault, Empty, Error, Face, Home, Info, Keyboard, Location, Message, Mine, Search, Shop, Success, UncheckedSquare, Unchecked, Warning, Wifi, } from "xun-icons"; const App = () => { return (
); }; ReactDOM.render(, document.getElementById("root")); ```