mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-12-06 04:24:41 +01:00
27 lines
449 B
TypeScript
27 lines
449 B
TypeScript
export const InlineIcon = ({
|
|
className,
|
|
icon,
|
|
size = "1em",
|
|
}: {
|
|
className?: string;
|
|
icon: React.ReactNode;
|
|
size?: string;
|
|
}) => {
|
|
return (
|
|
<span
|
|
className={className}
|
|
style={{
|
|
width: size,
|
|
height: "100%",
|
|
margin: "0 0.5ex 0 0.5ex",
|
|
display: "inline-flex",
|
|
lineHeight: 0,
|
|
verticalAlign: "middle",
|
|
flex: "0 0 auto",
|
|
}}
|
|
>
|
|
{icon}
|
|
</span>
|
|
);
|
|
};
|