스케치 아이콘을 사용하면 아이콘을 쉽게 가져올 수 있습니다.
3857 단어 reactnpmjavascripticons
문서: https://sketch-icons.gitbook.io/docs/
설치
npm i sketch-icons
# or
yarn add sketch-icons
용법
import { PlayFill } from "sketch-icons";
class Icons extends React.Component {
render() {
return (
<h2>
Here's a <PlayFill />
</h2>
);
}
}
속성
재산
기인하다
기본
색깔
color="color"
#2A2238
키
height={height}
32
너비
width={width}
32
뇌졸중
stroke="stroke-color"
#2A2238
스트로크 폭
strokeWidth="stroke-width"
1.5
import { ArrowUpCircle, ArrowDown } from "sketch-icons";
class Icons extends React.Component {
render() {
return (
<h2>
Go Up <ArrowUpCircle height={100} width={100} />
Move Down <ArrowDown stroke="blue" strokeWidth="0.1" color="#ffffff" />
</h2>
);
}
}
Github 저장소: https://github.com/garudatechnologydevelopers/Sketch-icons
Npm 패키지: https://www.npmjs.com/package/sketch-icons
Reference
이 문제에 관하여(스케치 아이콘을 사용하면 아이콘을 쉽게 가져올 수 있습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/ndrohith09/sketch-icons-makes-it-simple-to-import-icons-4kn2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)