Evidence-led research handbook

Universal iconography is earned.

No symbol is universally understood by appearance alone. Reliable icon systems combine standards, repeated convention, contextual framing, user testing, and text when ambiguity or consequence increases.

Text is the safe defaultEspecially for uncommon, consequential, or public actions.
Standards are domain-specificSafety, equipment, public information, and digital UI differ.
Comprehension must be measuredFamiliarity is not proof that users infer the same meaning.
Explore chapters
01 · Decision model

Use the smallest representation that remains unambiguous.

There is no useful global percentage for icon versus text. The decision depends on familiarity, ambiguity, consequence, frequency, and audience breadth.10

Evaluate a control

Persistent label recommended

The current profile asks the icon to carry more meaning than it should.

  • Multiple plausible interpretations
  • Only occasional exposure
  • Error interrupts the user’s work
Icon

Icon-only candidate

High familiarity, one dominant interpretation, frequent use, and low consequence. Still provide an accessible name and adequate target size.

+ Text

Persistent label recommended

The default for navigation and commands with moderate ambiguity, occasional use, or broad audiences.

Explain

Text and confirmation required

Use for destructive, legal, financial, healthcare, security, or safety-critical operations.

02 · Visual evidence

Familiar geometry can still carry competing meanings.

Visual comprehension depends on context, learned convention, optical clarity, and state—not merely whether the viewer recognizes the drawing.

One glyph, four meanings

The “X” is familiar. Its intended operation is not.

Ambiguity
Close
Clear
Remove
Cancel

Label presence changes precision

Persistent text resolves consequence and scope.

Text pairing

Optical size is not mechanical scaling

Small icons need simpler interiors and stronger negative space.

Geometry
16px
20px
24px
32px

State must be more than decoration

Filled and outline forms need a stable semantic role.

State
Available
Selected
Disabled
Resemblance

A bicycle works because the shape resembles a bicycle.

Convention

The floppy disk survives because “save” was repeatedly learned.

Context

An airplane inside an airport has a narrower interpretation.

Fallback

Text carries precision when the symbol cannot do so safely.

03 · Standards map

International standards divide the problem by domain.

There is no single universal application-icon standard. Public information, safety, equipment, diagrams, and accessibility have distinct semantic contracts.

Public informationAirports, stations, public facilities
ISO 7001

Registered public-information symbols. Use as semantic reference and add text where comprehension improves.1

SafetyWarning, prohibition, mandatory action
ISO 7010ISO 3864

Safety symbols, colors, shapes, and construction rules. Enclosure and color are part of the meaning, not decoration.2

EquipmentControls, terminals, operational states
ISO 7000IEC 60417ISO/IEC 80416

Registered equipment symbols and rules for creation, reproduction, arrows, and screen adaptation. Preserve registered meaning in digital implementations.34

TestingPerception, comprehension, association
ISO 9186

Formal symbol-evaluation methods. Design review alone does not establish comprehension.

Technical diagramsIndustrial and electrotechnical systems
ISO 14617IEC 60617

Symbols function as a technical visual language. Changing geometry can change system meaning.5

Digital accessibilityNames, contrast, target size
WCAG 2.2WAI-ARIA

Accessible names, visible-label consistency, non-text contrast, and pointer targets. Accessibility belongs in the component API.67

1

Enclosure

The triangle signals a warning category before the internal pictogram is interpreted.

2

Color system

Color reinforces category. It must not become the only communication channel.

3

Internal symbol

The pictogram identifies the specific hazard or required behavior.

4

Context and text

Placement, jurisdiction, language, and supporting instructions complete the operational message.

04 · Global and multilingual

Language-free does not mean culture-free.

Objects, gestures, reading direction, education, local regulation, and platform exposure shape interpretation.

Left-to-right
BackLogical previous surface
Right-to-left
رجوعLogical direction mirrors with the interface
Avoid embedded Latin text

“i,” “P,” “B,” “CC,” and acronyms may require locale variants.

Separate logical and physical direction

Back may mirror. Compass direction, maps, and measured data usually do not.

Question local objects

Mailboxes, carts, plugs, phones, houses, and payment objects vary.

Test gestures locally

Thumbs-up, OK, pointing, and beckoning can change meaning.

05 · Accessibility

Name the function, not the drawing.

A visually understandable icon can still fail assistive technology, voice control, contrast, or pointer-target requirements.6

Functional icon

Use an accessible name such as Delete report, not Trash can icon.

Decorative icon

When visible text carries the complete meaning, hide redundant SVG geometry from assistive technology.

Visible label parity

The accessible name should contain the visible wording so voice-control users can speak what they see.7

Non-text contrast

Meaningful graphic objects generally need sufficient contrast against adjacent colors.

Target size

A 20px glyph can sit inside a 44–48px interaction target. Glyph size and target size are separate decisions.8

State redundancy

Do not distinguish status only through color, fill, or a one-pixel stroke change.

<button type="button" aria-label="Delete report">
  <svg aria-hidden="true" viewBox="0 0 24 24">...</svg>
</button>

<button type="button">
  <svg aria-hidden="true" viewBox="0 0 24 24">...</svg>
  Delete report
</button>
06 · Testing

Use three formal symbol tests plus task validation.

Measure whether users can perceive the symbol, infer its meaning, associate it with the intended concept, and successfully use it in context.

01Perception

Can users identify the visual parts at the intended size, contrast, and distance?

02Comprehension

What meaning do users infer without a label or multiple-choice prompt?

03Association

Can users connect the symbol to the intended referent or operation?

04Task validation

Does the symbol improve completion, speed, confidence, and error recovery?

MetricWhat it revealsFailure mode
Unprompted comprehensionActual inferred meaningMultiple-choice inflation
Recognition timeCognitive effortTechnically correct but slow
ConfidenceHidden uncertaintyGuessing that appears accurate
Confusion pairCompeting interpretationsUpload/download or hide/show reversal
Task completionOperational usefulnessRecognition without successful action
Label dependencyWhether icon-only is defensibleRemoving text before evidence supports it
07 · Standards to libraries

Separate meaning, geometry, and platform delivery.

A standard catalog is not yet a design-system library. Production systems need stable semantic IDs, canonical geometry, variants, localization, accessibility, and versioned components.

1Standards

Authorities, domain conventions, and regulatory constraints.

2Semantic registry

Stable concept IDs, aliases, risk, text policy, and locale behavior.

3Canonical geometry

Keylines, optical center, stroke grammar, and minimum detail.

4Variants

Small-size, filled, selected, high-contrast, and RTL forms.

5Components

Typed APIs, accessible defaults, localization, and telemetry.

Construction anatomy

Draw for the optical result—not only the mathematical box.

Keylines create family resemblance. Optical correction preserves apparent weight, centering, and negative space at actual interface sizes.

Icon geometry construction A 24 unit keyline grid with safe area, mathematical center, optical center, and an adjusted bell icon. safe area optical center visual base
01
Keyline envelope

Defines family scale and prevents individual glyphs from feeling arbitrarily large or small.

02
Optical center

May differ from the geometric center because top-heavy and bottom-heavy shapes are perceived differently.

03
Negative space

Small sizes often need wider openings and fewer interior details than a mechanically scaled master.

04
Pixel behavior

Review at target sizes and device densities. The vector outline is not the final perceptual result.

interface IconDefinition {
  id: string;
  concept: string;
  function: "action" | "object" | "state" | "navigation";
  aliases: string[];
  forbiddenMeanings?: string[];

  labelKey: string;
  accessibleNameKey: string;
  directionBehavior:
    | "fixed"
    | "mirror-in-rtl"
    | "locale-variant"
    | "content-dependent";

  risk: "low" | "moderate" | "high" | "safety-critical";
  textPolicy:
    | "icon-only-allowed"
    | "label-recommended"
    | "label-required";
}
08 · Library comparison

Choose by semantic fit—not collection size.

Each library carries a visual dialect, platform assumption, and domain vocabulary. Compare candidates using the same dimensions.

Visual dialect lab

One semantic concept can be rendered in several visual languages.

Stroke, corner, fill, and layering can change without changing the semantic ID. The product contract should remain stable.

Neutral outline

Low coupling and easy CSS inheritance.

Rounded system

Softer terminals and containers create a friendlier dialect.

Filled state

Higher visual mass can signal selection or platform convention.

Layered / duotone

Useful for hierarchy, but requires explicit theme and contrast behavior.

Product contractArchive itemaction.archive
PolicyLabel + direction + risklabel-recommended · fixed
Platform mappingWeb · iOS · Androidvendor or custom geometry
LibrarySemantic coverageOptical sizingRTL / localizationPlatform couplingBest fit
Material SymbolsVery broadVariable optical-size axisDirectional handling depends on implementationModerate Google visual dialectBroad cross-platform product UI9
SF SymbolsBroadDeep typographic integrationStrong directional and localized variantsHigh Apple platform couplingNative Apple products11
Fluent IconsBroad enterpriseMultiple families and sizesRequires product-level policyModerate Microsoft dialectProductivity and enterprise workflows
Carbon IconsTechnicalExplicit optimized sizesProduct-level policy requiredModerate IBM dialectData, infrastructure, and enterprise systems12
LucideGeneral UIPrimarily stroke scalingManual semantic policyLowNeutral SVG-first interfaces
PhosphorBroad expressiveMultiple weights, not full optical mastersManual semantic policyLowFlexible branded interfaces
09 · Enterprise architecture

Expose a semantic icon platform.

Vendor glyph names are implementation details. Product code should depend on stable concepts and governed behavior.

1

Standards-controlled layer

Safety, public-information, equipment, electrical, and regulated symbols. Preserve authority and reference metadata.

ISO 7001 · ISO 7010 · IEC 60417 · IEC 60617
2

Shared product vocabulary

Stable semantic concepts used across products and platforms.

action.delete · navigation.back · state.warning
3

Domain extensions

Controlled packages for specialized concepts while preserving the same registry and governance model.

Security · Observability · AI · Finance · Healthcare · Industrial
// Avoid binding product meaning to a vendor glyph.
<Trash2 />

// Prefer a stable semantic contract.
<ProductIcon
  name="action.delete"
  size="sm"
  label={t("actions.delete")}
/>
10 · Governance

Treat every icon as a semantic API.

A contribution needs meaning, constraints, localization behavior, evidence, ownership, and lifecycle—not only an SVG.

Semantic definition

Intended meaning, aliases, and prohibited meanings.

Risk and text policy

Whether icon-only is allowed, discouraged, or prohibited.

Accessibility contract

Accessible-name recommendations and decorative behavior.

Localization behavior

RTL mirroring, locale variants, and embedded-text review.

Geometry and variants

Keylines, optical sizes, selected state, and high contrast.

Evidence and lifecycle

Testing results, owner, version, and deprecation replacement.

Gate 1Semantic review

Meaning, prohibited uses, risk, and text policy are explicit.

Gate 2Visual QA

Keylines, optical sizes, contrast, themes, and platform parity pass.

Gate 3Audience validation

Representative users confirm comprehension and confusion pairs.

Gate 4Release telemetry

Errors, reversals, tooltip use, and label dependency remain observable.

Automate artifact checks

Bounds, view box, complexity, duplicate geometry, contrast, and missing metadata.

Keep human semantic review

Culture, gestures, safety, confusion pairs, trademarks, and sensitive associations.

Version the vocabulary

Deprecate semantic IDs deliberately and publish replacements.

Measure in product

Monitor errors, tooltips, reversals, and label dependency after release.

11 · Glossary

Use precise terms for precise responsibilities.

Identity, action, status, and instruction are different semantic contracts.

TermPrimary roleExample
GlyphA rendered visual formA specific SVG path
IconRepresents an action, object, state, or conceptSearch, upload, filter
PictogramDepicts a concept through simplified imageryRestroom, baggage claim
SymbolCarries formally or conventionally assigned meaningPower, radiation, grounding
SignCombines symbol, color, enclosure, placement, and contextEmergency exit sign
MarkIdentifies an organization, product, or brandA corporate mark
IndicatorCommunicates status rather than actionConnectivity state
12 · Provenance

Claim-level traceability and authoritative sources.

Inline markers connect high-value claims to the references below. Formal requirements should always be verified against the applicable edition, jurisdiction, and license.

Traceability model: numbered markers connect load-bearing claims to authoritative references. Unnumbered guidance is synthesis or implementation recommendation derived from the cited standards and platform documentation.
1
ISO 7001 — Public information symbolsRegistered public-space pictograms and meanings.
2
ISO 7010 — Registered safety signsAccident prevention, evacuation, health hazards, and fire protection.
3
ISO 7000 — Graphical symbols for equipmentRegistered equipment symbols and operational meanings.
4
ISO/IEC 80416 — Symbol construction and screen adaptationCreation, reproduction, arrows, and display adaptation.
5
ISO 14617 — Graphical symbols for diagramsIndustrial diagram principles and symbol vocabulary.
6
W3C — Functional imagesAccessible alternatives should describe purpose and action.
7
WCAG 2.2 — Label in NameAccessible names should contain visible labels.
8
WCAG 2.2 — Target SizeMinimum pointer-target guidance and exceptions.
9
Material SymbolsVariable fill, weight, grade, and optical size.
10
Nielsen Norman Group — Icon usabilityWhy unfamiliar icons generally require labels.
11
Apple HIG — Right-to-left designLogical direction, mirrored icons, and localized symbol behavior.
12
IBM Carbon — Icon usageOptical sizing and typography alignment in enterprise UI.
Methodology and limitations
This handbook synthesizes standards documentation, platform guidance, accessibility criteria, and icon-system practices into a product-design framework. “Universal” is treated as a measurable comprehension property rather than an intrinsic quality. Legal or regulated deployments should verify the exact edition, jurisdiction, and licensing terms of each applicable standard.