다음 웹 앱을 위한 훌륭한 SVG 리소스
3902 단어 webdevproductivity
React 앱에서 사용하는 것은 매우 쉽습니다.
import React, { Component } from "react";
import example from '../assets/img/example.svg';
import './example.css';
class Example extends Component {
render() {
return (
<div>
<div className="img-part" >
<img src={example} alt="example" />
</div>
</div>
);
}
}
export default Example;
SVG 이미지 사용의 이점은 다음과 같습니다.
훌륭한 SVG 이미지 세트를 찾다가 발견했습니다unDraw. Undraw는 오픈 소스 커뮤니티에 기여하고자 하는 디자이너의 SVG 이미지 세트입니다. 나는 아름다움, 스타일 및 SVG 이미지의 방대한 선택에 깊은 인상을 받았습니다. 이미지 중 하나의 예는 이 블로그 게시물의 표지 사진입니다.
이 SVG 이미지 세트의 독특한 점 중 하나는 다음과 같이 이미지의 색상을 조정할 수 있다는 것입니다.
unDraw에는 앱의 주제에 맞는 이미지를 쉽게 찾을 수 있는 매우 우수한 키워드 검색 도구도 포함되어 있습니다.
license for unDraw은 TLDR로 매우 관대합니다. ~이다
you can use the illustrations in any project, commercial or personal without attribution or any costs. Just don’t try to replicate unDraw, redistribute in packs the illustrations or create integrations for it.
Reference
이 문제에 관하여(다음 웹 앱을 위한 훌륭한 SVG 리소스), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/deanandreakis/great-svg-resource-for-your-next-web-app-85d텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)