public static bool IsA11Group(this FigmaNode node)
        {
            var a11node = node.GetA11Node();

            if (a11node != null && a11node.TryGetChildPropertyValue(a11yRole, out var value) && value == a11yRoleGroup)
            {
                return(true);
            }
            return(false);
        }
        public static bool TrySearchA11Help(this FigmaNode node, out string label)
        {
            var a11node = node.GetA11Node();

            if (a11node != null && a11node.TryGetChildPropertyValue(a11yHelp, out label))
            {
                return(true);
            }
            label = null;
            return(false);
        }