yin-yang
lab
yinyang • contrast • opposites • interconnected • balance • unity • chinese • culture • philosopy • chaos • calm • rest • tranquility • peace • harmony • energy • aura • sprituality • meditation • wellbeing • lifestyle • symbol
html
<script>
import { createIcons } from 'lucide';
import { yinYang } from '@lucide/lab';
createIcons({
icons: {
yinYang
}
});
</script>
<i data-lucide="yin-yang"></i>
tsx
import { Icon } from 'lucide-react';
import { yinYang } from '@lucide/lab';
const App = () => {
return (
<Icon iconNode={yinYang} />
);
};
export default App;
vue
<script setup>
import { Icon } from 'lucide-vue-next';
import { yinYang } from '@lucide/lab';
</script>
<template>
<Icon :iconNode="yinYang" />
</template>
svelte
<script>
import { Icon } from 'lucide-svelte';
import { yinYang } from '@lucide/lab';
</script>
<Icon iconNode={yinYang} />
tsx
import { Icon } from 'lucide-preact';
import { yinYang } from '@lucide/lab';
const App = () => {
return (
<Icon iconNode={yinYang} />
);
};
export default App;
tsx
import { Icon } from 'lucide-solid';
import { yinYang } from '@lucide/lab';
const App = () => {
return (
<Icon iconNode={yinYang} />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule } from 'lucide-angular';
import { yinYang } from '@lucide/lab';
@NgModule({
imports: [
LucideAngularModule.pick({ YinYang: yinYang })
],
})
// app.component.html
<lucide-icon name="YinYang"></lucide-icon>
看看这个图标的实际效果
错误
功能
Yin
112
8
11