mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-03-01 18:30:16 +01:00
8 lines
196 B
TypeScript
8 lines
196 B
TypeScript
export const getColIconByType = (type: TAVCol) => {
|
|
switch (type) {
|
|
case "text":
|
|
return "iconAlignLeft";
|
|
case "block":
|
|
return "iconParagraph";
|
|
}
|
|
};
|