Icons

Find the source code here.

Overview

Icons come from iconify. By default, we choose the Remix Icon package.

Installation

Notes

To use this component, you need to initialize your project first. If not done yet, run one of the following command:

npx jsxpine init or yarn jsxpine init or pnpm jsxpine init or bunx jsxpine init.

Go to the installation and usage page to learn more.

jsxpine add icon
Copied !

Copied !


	--------------------     Components Dependencies   -------------------------

		/**
 * @typedef SVGProps
 * @type {{fill?: string, stroke?: string, strokeWidth?: number, viewBox: string } & Omit<JSX.HtmlTag, "className"> & import("../common/props").CLSXClassProps}
 */

/**
 * SVG component props
 * @type {import("../common/props").JSXComponent<SVGProps>}
 */
export function SVG(props) {
    const {
        children,
        class: className,
        fill = "none",
        stroke = "currentColor",
        strokeWidth = 0.5,
        ...restProps
        } = props;
    return (
        <svg
            xmlns="http://www.w3.org/2000/svg"
            fill={fill}
            stroke={stroke}
            class={className}
            style={{ strokeWidth: String(strokeWidth) }}
            {...restProps}
        >
            {children}
        </svg>
    )
}

	
	--------------------     Icon Component   -------------------------

		import { icons } from "@iconify-json/ri/icons.json";
import clsx from "clsx";
import { SVG } from "./svg.component";

/**
 * @typedef {`ri.${keyof typeof import("@iconify-json/ri/icons.json")["icons"]}`} IconName
 */

/**
 * @typedef IconProps
 * @type {{size?: number, name: IconName, color?: string, applyDefsId?: string} & import("./svg.component").SVGProps}
 */

/**
 * Icon component props
 * @param {Omit<IconProps, "viewBox">} props
 */
export function Icon({
	children,
	size = 4,
	name,
	applyDefsId,
	class: className,
	...restProps
}) {
	const iconType = name.split(".")[0];
	const iconName = /** @type {keyof typeof icons} */ (name.split(".")[1]);
	if (!icons[iconName]) {
		console.error(`"${name}" is not an icon from iconify/${iconType}`);
		return "";
	}
	const { body } = icons[iconName];

	// The purpose is to retrieve value from d attribute
	let retrieveDValue = "";
	const bodyMatch = body.match(/d=".+"/g);
	const retrieveDAttribute = bodyMatch ? bodyMatch[0] : "";
	if (retrieveDAttribute) {
		retrieveDValue = retrieveDAttribute.slice(3, -2);
	}

	return (
		<SVG
			viewBox={"0 0 24 24"}
			{...restProps}
			class={clsx(`size-${size}`, className)}
		>
			{children}
			<path
				stroke-linecap="round"
				stroke-linejoin="round"
				fill={applyDefsId ? `url(#${applyDefsId})` : "currentColor"}
				d={retrieveDValue}
			/>
		</SVG>
	);
}

	
	

Usage

You can use any icon from iconify's Remix Icon package (@iconify-json/ri). Thanks to your code editor's intellisense, autocompletion shows you all available icons name as you type, dope right ? ;).

Copied !

import { Icon } from "$components/icon.component";

export function UsqgeIconExqample() {
    return (
        <>
            <Icon name="ri.arrow-left-line" />
            <Icon name="ri.arrow-up-line" />
            <Icon name="ri.arrow-right-line" />
            <Icon name="ri.arrow-down-line" />
        </>
    );
}

Size Props

Size props are almost value from tailwind's size unit class: 4, 5, 6, 8, 10, 12, 16, 20, 24, 32, 40, 48, 56, 64, 72, 80, 96.

Copied !

import { Icon } from "$components/icon.component";

export function SizeIconExample() {
    return (
        <>
            <Icon name="ri.add-circle-fill" size={6} />
            <Icon name="ri.add-circle-fill" size={8} />
            <Icon name="ri.add-circle-fill" size={12} />
            <Icon name="ri.add-circle-fill" size={16} />
        </>
    )
}

Color Props

You will deal with colors using text-[color] classes. For example, text-white, text-green-500, etc.

Copied !

import { Icon } from "$components/icon.component";

export function ColorIconExample() {
    return (
        <>
            <Icon name="ri.edit-box-line" size={12} class="text-primary" />
            <Icon name="ri.edit-box-line" size={12} class="text-secondary" />
            <Icon name="ri.edit-box-line" size={12} class="text-info" />
            <Icon name="ri.edit-box-line" size={12} class="text-success" />
            <Icon name="ri.edit-box-line" size={12} class="text-warning" />
            <Icon name="ri.edit-box-line" size={12} class="text-danger" />
        </>
    )
}

Use Other Iconify Icons

Like said in usage section, jsxpine allow you to use iconify's remix icons package. Because iconify include other packages, you can use them instead of remix.

However, be sure that this package has the same structure as @iconify-json/ri. You can look this link from the iconify website about icon json structure for a better understanding.

ComponentsGalleries
ComponentsImagePicker