mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
15 lines
299 B
TypeScript
15 lines
299 B
TypeScript
export const InlineIcon = ({ icon }: { icon: React.ReactNode }) => {
|
|
return (
|
|
<span
|
|
style={{
|
|
width: "1em",
|
|
margin: "0 0.5ex 0 0.5ex",
|
|
display: "inline-block",
|
|
lineHeight: 0,
|
|
verticalAlign: "middle",
|
|
}}
|
|
>
|
|
{icon}
|
|
</span>
|
|
);
|
|
};
|