스케치 아이콘을 사용하면 아이콘을 쉽게 가져올 수 있습니다.
홈페이지 : https://sketch-icons.netlify.app/
설치
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>
);
}
}
CDN 사용
프로젝트에서 아이콘을 사용하려면 CDN을 사용할 수 있습니다. HTML 파일에 다음 cdn을 추가합니다.
<link
rel="stylesheet"
type="text/css"
href="https://unpkg.com/[email protected]/dist/cdn/icons.css"
/>
예시
스케치 아이콘 번들에서 미리 만들어진 아이콘을 활용하려면
class
태그에 i
속성을 채웁니다.<head>
...
<link
rel="stylesheet"
type="text/css"
href="https://unpkg.com/[email protected]/dist/cdn/icons.css"
/>
...
</head>
<body>
...
<i class="sk sk-alarm-fill"></i>
...
</body>
CSS 선택기 사용
CSS 선택기를 사용하여 아이콘의 속성을 변경할 수 있습니다. 선택기는
.sk-
다음에 아이콘 이름이 옵니다..sk-alarm-fill {
color: red;
font-size: 35px;
}
속성
재산
기인하다
기본
색깔
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>
);
}
}
아이콘
모두 보려면 여기를 클릭하십시오 sketch-icons
Reference
이 문제에 관하여(스케치 아이콘을 사용하면 아이콘을 쉽게 가져올 수 있습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/ndrohith/sketch-icons-makes-it-simple-to-import-icons-4lkm텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)