Skip to content

Getting started

This guide will help you get started with YCloud Icons in your React project. Make sure you have a React environment set up. If you don't have one yet, you can create a new React project using Create React App, Vite, or any other React boilerplate of your choice.

Installation

sh
pnpm add @ycloud-web/icons-react
sh
yarn add @ycloud-web/icons-react
sh
npm install @ycloud-web/icons-react
sh
bun add @ycloud-web/icons-react

Importing your first icon

YCloud Icons is built with ES Modules, so it's completely tree-shakable.

Each icon can be imported as a React component, which renders an inline SVG element. This way, only the icons that are imported into your project are included in the final bundle. The rest of the icons are tree-shaken away.

jsx
import { Camera } from '@ycloud-web/icons-react';
// Usage
const App = () => {
  return <Camera />;
};
export default App;

Props

To customize the appearance of an icon, you can use the following props:

nametypedefault
sizenumber24
colorstringcurrentColor
strokeWidthnumber2
absoluteStrokeWidthbooleanfalse

Because icons render as SVG elements, all standard SVG attributes can also be applied as props. See the list of SVG Presentation Attributes on MDN.

jsx
// Usage
const App = () => {
  return (
    <Camera
      size={48}
      color="red"
      strokeWidth={1}
    />
  );
};

More examples and details how to use props, continue the guide:

Released under the ISC License.