mirror of
https://github.com/outline/outline.git
synced 2025-12-21 02:29:41 -06:00
44 lines
945 B
TypeScript
44 lines
945 B
TypeScript
import { observer } from "mobx-react";
|
|
import * as React from "react";
|
|
import styled from "styled-components";
|
|
import Logger from "~/utils/Logger";
|
|
import { Hook, usePluginValue } from "~/utils/PluginManager";
|
|
|
|
type Props = {
|
|
/** The ID of the plugin to render an Icon for. */
|
|
id: string;
|
|
/** The size of the icon. */
|
|
size?: number;
|
|
/** The color of the icon. */
|
|
color?: string;
|
|
};
|
|
|
|
/**
|
|
* Renders an icon defined in a plugin (Hook.Icon).
|
|
*/
|
|
function PluginIcon({ id, color, size = 24 }: Props) {
|
|
const Icon = usePluginValue(Hook.Icon, id);
|
|
|
|
if (Icon) {
|
|
return (
|
|
<IconPosition>
|
|
<Icon size={size} fill={color} />
|
|
</IconPosition>
|
|
);
|
|
}
|
|
|
|
Logger.warn("No Icon registered for plugin", { id });
|
|
return null;
|
|
}
|
|
|
|
const IconPosition = styled.div`
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
width: 24px;
|
|
height: 24px;
|
|
`;
|
|
|
|
export default observer(PluginIcon);
|