forked from cerc-io/snowballtools-base
31 lines
636 B
TypeScript
31 lines
636 B
TypeScript
import React, { ComponentPropsWithoutRef } from 'react';
|
|
|
|
export interface CustomIconProps extends ComponentPropsWithoutRef<'svg'> {
|
|
size?: number | string; // width and height will both be set as the same value
|
|
name?: string;
|
|
}
|
|
|
|
export const CustomIcon = ({
|
|
children,
|
|
width = 24,
|
|
height = 24,
|
|
size,
|
|
viewBox = '0 0 24 24',
|
|
name,
|
|
...rest
|
|
}: CustomIconProps) => {
|
|
return (
|
|
<svg
|
|
aria-labelledby={name}
|
|
height={size || height}
|
|
role="presentation"
|
|
viewBox={viewBox}
|
|
width={size || width}
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
{...rest}
|
|
>
|
|
{children}
|
|
</svg>
|
|
);
|
|
};
|