Skip to content

Create mouse icon component #808

@antonio06

Description

@antonio06

Create the component under basic shape.

https://yesicon.app/ph/cursor


import React from "react";
import { Group, Path } from "react-konva";

type IconProps = {
x?: number;
y?: number;
width?: number;
height?: number;
fill?: string;
};

const KnifeIcon: React.FC = ({
x = 0,
y = 0,
width = 256,
height = 256,
fill = "#999999",
}) => {
// El SVG original tiene viewBox="0 0 256 256"
const baseSize = 256;
const scaleX = width / baseSize;
const scaleY = height / baseSize;

return (



);
};

export default KnifeIcon;

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions