0.0.4 • Published 2 months ago

undraw-react v0.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

Undraw Illustrations for React!

Overview

This npm package provides a convenient way to import SVG illustrations from the Undraw Illustrations website as React components. Each illustration can be easily integrated into your React projects using either <ImageName /> or <UndrawIllustration name="ImageName" /> syntax. Additionally, you can customize the color, size, and style of each component to suit your needs.

type UndrawSVGProps = {
  color?: string;
  size?: number | string;
  style?: React.CSSProperties;
};

Usage

Import the desired illustration component in your React application and use it within your JSX code:

import React from 'react';
import { UndrawIllustration, Welcome } from 'undraw-react';

const MyComponent = () => {
  return (
    <div>
      {/* Using <ImageName /> syntax */}
      <Welcome color="blue" size={200} style={{ marginTop: '20px' }} />

      {/* Using <Undraw /> syntax */}
      <UndrawIllustration name="Welcome" color="green" size={300} style={{ marginBottom: '40px' }} />
    </div>
  );
};

export default MyComponent;

Props

You can customize each illustration component using the following props:

  • name: The name of the illustration.
  • color: The color of the illustration.
  • size: The size of the illustration.
  • style: Custom styles to apply to the illustration.

Available Illustrations

To find the available illustration names, visit the Undraw Illustrations website and choose the desired illustration. The name of the illustration is in CamelCase format, so team effort will be TeamEffort.

!!!Warning!!! Not all illustrations are added, if package doesn't contain some illustrations, contact us on github and create an request for them.

0.0.4

2 months ago

0.0.2-rev30

2 months ago

0.0.2-rev32

2 months ago

0.0.2-rev31

2 months ago

0.0.2-rev34

2 months ago

0.0.2-rev33

2 months ago

0.0.2-rev36

2 months ago

0.0.2-rev35

2 months ago

0.0.2-rev37

2 months ago

0.0.2-rev39

2 months ago

0.0.2-rev25

2 months ago

0.0.2-rev27

2 months ago

0.0.2-rev26

2 months ago

0.0.2-rev29

2 months ago

0.0.2-rev28

2 months ago

0.0.2-rev41

2 months ago

0.0.2-rev43

2 months ago

0.0.2-rev42

2 months ago

0.0.3-rev2

2 months ago

0.0.2-rev45

2 months ago

0.0.3-rev1

2 months ago

0.0.2-rev44

2 months ago

0.0.3

2 months ago

0.0.2-rev24

2 months ago

0.0.2-rev23

2 months ago

0.0.2-rev22

2 months ago

0.0.2-rev21

2 months ago

0.0.2-rev20

2 months ago

0.0.2-rev19

2 months ago

0.0.2-rev18

2 months ago

0.0.2-rev17

2 months ago

0.0.2-rev16

2 months ago

0.0.2-rev15

2 months ago

0.0.2-rev14

2 months ago

0.0.2-rev13

2 months ago

0.0.2-rev12

2 months ago

0.0.2-rev11

2 months ago

0.0.2-rev10

2 months ago

0.0.2-rev9

2 months ago

0.0.2-rev8

2 months ago

0.0.2-rev7

2 months ago

0.0.2-rev6

2 months ago

0.0.2-rev5

2 months ago

0.0.2-rev4

2 months ago

0.0.2-rev3

2 months ago

0.0.2-rev2

2 months ago

0.0.2-rev1

2 months ago

0.0.2

2 months ago

0.0.1

2 months ago