SymbolEffect
SymbolEffect adapts SwiftUI's symbol animation modifiers into an explicit wrapper component for the web.
SymbolEffect adapts SwiftUI's symbol animation modifiers into an explicit wrapper component for the web.
Examples
Pulse
Preview unavailable for this example in the static docs build.
Show code
<SymbolEffect effect="pulse">{<span style={{ fontSize: 32 }}>★</span>}</SymbolEffect>Variants
Preview unavailable for this example in the static docs build.
Show code
<SymbolEffect effect="bounce">{<span style={{ fontSize: 32 }}>🔔</span>}</SymbolEffect>Variants
Preview unavailable for this example in the static docs build.
Show code
<SymbolEffect effect="appear">{<span style={{ fontSize: 32 }}>♥</span>}</SymbolEffect>API
| Prop | Type | Required | Description |
|---|---|---|---|
effect | 'pulse' | 'bounce' | 'appear' | No | No description yet. |
isActive | boolean | No | No description yet. |
Inherits additional props from IBaseComponent.
Overview
SymbolEffect adapts SwiftUI's symbol animation modifiers into an explicit wrapper component for the web.
SwipeActions
SwipeActions adapts SwiftUI's swipe-revealed row actions into an explicit, accessible web row wrapper. On the web, actions are revealed with a toggle instead of relying on touch-only gestures.
Table
Table renders structured tabular data with explicit `TableColumn` definitions, aligned with SwiftUI's table mental model.