mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 21:53:27 -05:00
10 lines
186 B
TypeScript
10 lines
186 B
TypeScript
|
type LoaderProps = {
|
||
|
loading: boolean;
|
||
|
};
|
||
|
|
||
|
export const Loader = ({ loading }: LoaderProps) => {
|
||
|
if (!loading) return;
|
||
|
|
||
|
return <section>Checking for missing fonts...</section>;
|
||
|
};
|