Support svg as a async function returing promise/string

This commit is contained in:
ad1992
2022-04-18 16:08:40 +05:30
parent ed3eda3401
commit d2d3599661
3 changed files with 59 additions and 2 deletions

View File

@@ -228,7 +228,7 @@ export type CustomElementConfig = {
type: "custom";
customType: string;
transformHandles?: boolean;
svg: string;
svg: string | ((element?: ExcalidrawElement) => string | Promise<string>);
width?: number;
height?: number;
stackedOnTop: boolean;