svelte simple icons
v4.0.1
이 패키지는 Svelte 구성 요소 세트로 패키지된 Simple Icons 13.21.0을 제공합니다.
다음을 사용하여 프로젝트 디렉터리에 패키지를 설치합니다.
// with yarn
yarn add @icons-pack/svelte-simple-icons
// with npm
npm add @icons-pack/svelte-simple-icons
모든 아이콘은 단일 파일에서 가져오며, 여기서 [ICON SLUG]는 대문자 슬러그로 대체됩니다.
코드샌드박스 편집
<!-- Import a specific icon by its slug as: -->
<!-- import { Si[ICON SLUG] } from 'simple-icons'; -->
< script >
import { SiReact , SiSvelte , SiDocker } from " @icons-pack/svelte-simple-icons " ;
</ script >
< SiSvelte color = "#FF3E00" size ={ 90 } />
< SiReactJs color = "#61DAFB" size ={ 50 } />
< SiDocker />
<!-- title default "Svelte" -->
< script >
import { SiSvelte } from " @icons-pack/svelte-simple-icons " ;
</ script >
< SiSvelte title = " My title " />
< script >
import { SiSvelte } from " @icons-pack/svelte-simple-icons " ;
</ script >
< SiSvelte class = " myStyle " />
< style >
.myStyle {
width : 35 px ;
height : 35 px ;
}
</ style >
때로는 구성 요소를 구성 요소에 동적으로 제공하고 싶을 때가 있습니다. 도우미 유형 SiComponentType
유형 정의와 함께 svelte:component
기능을 사용하면 이를 수행할 수 있습니다.
< script lang = " ts " >
import type { SiComponentType } from ' @icons-pack/svelte-simple-icons ' ;
export let icon : SiComponentType ;
export let text : string ;
export let click : () => void = () => console . log ( ' do something ' );
</ script >
< button on:click ={ click }>
< svelte:component
this ={ icon }
title ={ text } <!-- optional , along with size and color properties -->
/>
{ text }
</ button >
< style lang = " scss " >
button {
display : flex ;
flex-direction : row ;
text-decoration : none ;
white-space : nowrap ;
transition : border-color 0.25 s ;
box-shadow : none ;
text-shadow : none ;
}
.icon {
margin : 4 px 4 px 0 0 ;
}
</ style >
몇 개의 아이콘만 필요한 경우 전체 파일 대신 개별적으로 가져와서 편집을 개선할 수 있습니다.
< script >
import SiSvelte from " @icons-pack/svelte-simple-icons/icons/SiSvelte.svelte " ;
import SiGithub from " @icons-pack/svelte-simple-icons/icons/SiGithub.svelte " ;
</ script >
< SiGithub />
< SiSvelte />