How to use the @blueprintjs/docs-theme.smartSearch function in @blueprintjs/docs-theme

To help you get started, we’ve selected a few @blueprintjs/docs-theme examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github palantir / blueprint / packages / docs-app / src / components / icons.tsx View on Github external
function isIconFiltered(query: string, icon: IIcon) {
    return smartSearch(query, icon.displayName, icon.iconName, icon.tags, icon.group);
}