xaligo is a diagram-as-code engine for architecture and network diagrams. It
renders the Vue-style .xal XML DSL to Excalidraw, SVG, PPTX, XYFlow, and
Isoflow-compatible output.
The renderer is designed around a single shared pipeline:
.xal
-> parser
-> layout
-> shared scene and routing
-> output encoder
-> Excalidraw | SVG | PPTX | XYFlow | Isoflow
Core features:
Vuetify-style layout primitives such as frames, rows, columns, spacing, and
alignment.
AWS architecture group components and catalog-backed service icons.
Orthogonal connector routing with route and traffic layers.
Manual bend points in frame coordinates.
Group, rectangle, port, and item endpoints.
Excalidraw-friendly editable output.
SVG and PPTX output with line jumps, legends, and export-focused routing.
Use this documentation when authoring .xal files, rendering output, or
working on the xaligo codebase.
Install the native CLI package:
npm install -g @xaligo/xaligo
xaligo version
The package installs the xaligo command, runtime icon catalogs, and the PPTX
exporter WebAssembly artifact used by the CLI.
Build the CLI from source:
git clone https://github.com/xaligo/xaligo
cd xaligo
go mod tidy
make build
.bin/xaligo version
make build produces .bin/xaligo and builds the PPTX exporter WASM artifact.
Install the package in environments that need the TypeScript/WASM API:
npm install @xaligo/xaligo
The package exposes API entry points for extension hosts and browser-like
environments where spawning the native CLI is not available.
import { renderPptxPlan } from "@xaligo/xaligo";
const pptx = await renderPptxPlan(planJson, { title: "Architecture" });
Build only the PPTX exporter WASM artifact:
make build-wasm
Package layout:
Path Purpose
@xaligo/xaligoCLI binary plus TypeScript/WASM API exports
external/Internal TypeScript/PptxGenJS build workspace
Install the CLI from npm:
npm install -g @xaligo/xaligo
xaligo version
Or build from source:
git clone https://github.com/xaligo/xaligo
cd xaligo
go mod tidy
make build
.bin/xaligo version
Create a .xal file:
<frame width="1122" height="794" class="pa-4">
<aws-cloud id="cloud" title="AWS Cloud">
<region id="region-apne1" title="ap-northeast-1">
<vpc id="prod-vpc" title="Production VPC">
<public-subnet id="public" title="Public Subnet">
<item id="1178" name="web" />
</public-subnet>
<private-subnet id="app" title="Application Subnet">
<item id="27" name="app-server" />
</private-subnet>
</vpc>
</region>
</aws-cloud>
<connections kind="traffic" color="#2563eb">
<connection src="web" dst="app-server" />
</connections>
</frame>
Render it:
xaligo render diagram.xal --format excalidraw -o diagram.excalidraw
xaligo render diagram.xal --format svg -o diagram.svg
PPTX export uses the bundled or configured WASM exporter:
xaligo render diagram.xal --format pptx -o diagram.pptx \
--paper A3 --orientation landscape \
--paper-margin-top 0.75 --paper-margin-bottom 0.75
Run validation before rendering large diagrams:
xaligo validate diagram.xal
Validation catches malformed XML, invalid layout references, duplicate
connection references, nested connection tags, and unresolved endpoints.
xaligo render <file.xal> --format <format> -o <output>
Supported formats:
Format Output
excalidrawEditable Excalidraw JSON
svgStandalone SVG
pptxPowerPoint presentation
xyflowReact Flow / XYFlow JSON
isoflowIsoflow-compatible model JSON
Common render flags:
Flag Description
`--mode standard network
`--theme light dark`
--services <csv>Service metadata and label overrides
`--svg-legend-position top right
PPTX-specific flags:
Flag Description
`--paper A5 A4
`--orientation portrait landscape`
--paper-margin <inches>Margin applied before fitting
--paper-margin-top/right/bottom/left <inches>Per-side margin override
--px-per-inch <number>Layout scaling base
--title, --author, --company, --subjectPresentation metadata
`--compression true false`
Generate a starter .xal hierarchy:
xaligo generate xal -o generated.xal --paper A4 --orientation landscape
Useful generation flags:
Flag Description
--clouds, --accounts, --regions, --azsAWS hierarchy counts
`--az-layout grid staggered`
--subnetsNumber of subnets
`--spacing vertical horizontal
`--start top left`
Command Description
xaligo validate <file.xal>Validate syntax, layout, and connection references
xaligo serve <file.xal>Serve an SVG live preview
xaligo add service --name <name> --file <file>Add a service icon
xaligo add service --list <csv> --file <file>Bulk-add service icons
xaligo init [-o <dir>]Generate a sample .xal file
xaligo versionPrint version
--services <csv> provides label overrides and legend metadata.
The CSV format is:
id,OfficialName,Abbreviation,Summary,Usage,Notes
Rules:
Blank lines and lines beginning with # are ignored.
id must be a positive numeric service catalog ID.
OfficialName is required.
Abbreviation is optional. When present, it is used for item labels and
legend abbreviations.
Duplicate IDs are rejected.
Example:
id,OfficialName,Abbreviation,Summary,Usage,Notes
1178,Amazon CloudFront,CF,CDN,Edge delivery,
27,Amazon EC2,EC2,Compute,Application servers,
117,Amazon RDS,RDS,Database,Relational database,
SVG output draws a service legend when --services is supplied. PPTX output
adds separate legend slide(s) after the diagram slide.
Source: examples/complex-hybrid-architecture.xal
xaligo render examples/complex-hybrid-architecture.xal \
--format svg \
--mode network \
-o output/complex-hybrid-architecture.svg
Use the same .xal source to generate an Isoflow-compatible model:
xaligo render examples/complex-hybrid-architecture.xal \
--format isoflow \
--mode network \
-o output/complex-hybrid-architecture.isoflow.json
Use kind="route" for structural paths without arrowheads, then add
kind="traffic" connections over the same endpoints for directional flows.
Traffic lines are drawn beside the matching route lane when possible.
Source: examples/route-traffic.xal
xaligo render examples/route-traffic.xal \
--format svg \
--mode network \
-o output/route-traffic.svg
Generate a starter AWS hierarchy and render it:
xaligo generate xal --clouds 1 --accounts 1 --regions 2 --azs 2 \
--az-layout staggered --subnets 2 --spacing both --start top \
--paper A4 --orientation landscape -o output/infra.xal
xaligo render output/infra.xal \
--format excalidraw \
-o output/infra.excalidraw \
--services examples/services.csv
.xal is an XML DSL for diagrams. The root tag is always <frame>.
<frame width="1440" height="900" class="pa-4">
...
</frame>
Important rules:
Layout coordinates use pixels.
The origin is the upper-left of the rendered frame.
Positive x extends right and positive y extends down.
Connections must be direct children of <frame> or inside frame-level
<connections>.
AWS group tags, <rectangle>, and <port> require non-empty unique IDs so
they can be referenced by connectors.
The parser uses standard XML syntax. Escape special characters in attribute
values, for example &.
For lookup tables, see the dedicated reference pages:
<frame> defines the canvas size and the top-level layout.
Attribute Default Description
width1280Frame width in pixels
height720Frame height in pixels
classVuetify-style spacing class
layoutvertical Use horizontal for side-by-side children
gap16Gap between child elements
item-sizeconfig value Max icon size for <item> elements
margin, margin-*Content inset in pixels
content-width, content-heightOverride usable content size
align`top
<container> stacks children vertically by default. Use layout="horizontal"
for horizontal placement.
<container class="pa-4" gap="16">
...
</container>
<row> and <col> provide a 12-column grid.
<row gap="20">
<col span="8">...</col>
<col span="4">...</col>
</row>
<row> and <col> are pure layout tags. They do not render borders or labels.
class supports Vuetify-like spacing classes such as pa-4 and ma-4.
Root frame margins inset content without changing the paper frame size.
AWS group tags render architecture-style containers with headers, icons, and
border styles. Examples include:
<aws-cloud>
<aws-account>
<region>
<vpc>
<availability-zone>
<public-subnet>
<private-subnet>
<security-group>
<generic-group>
Every group tag requires a non-empty id. IDs must be unique among frame-like
components so groups can be used as connection endpoints.
<aws-cloud id="cloud" title="AWS Cloud">
<region id="region-apne1" title="ap-northeast-1">
<vpc id="prod-vpc" title="Production VPC">
...
</vpc>
</region>
</aws-cloud>
generic-group accepts icon-id, using the same catalog as <item>.
<generic-group id="network-topology" title="Network Topology" icon-id="104635">
<item id="200036" />
</generic-group>
Group header and item label width estimates count East Asian full-width
characters as double-width so Japanese and other full-width labels stay aligned
across Excalidraw, SVG, and PPTX.
<item> places a catalog icon inside its parent group or container.
<public-subnet id="public" title="Public Subnet">
<item id="1178" name="web" />
<item />
<item id="1189" name="edge" />
</public-subnet>
Attribute Description
idService catalog ID. Empty or omitted means spacer
nameOptional connection reference
refOptional connection reference
dx / dyRelative icon offset in pixels from the icon's normal layout x,y position. The moved icon rectangle must remain inside the parent frame/group border
When no icon is found for a service ID, rendering skips that item and emits a
warning.
Use <spacer /> or <blank /> for explicit empty grid cells:
<spacer />
<blank />
Spacers occupy layout slots but render no icon, label, border, or text.
<rectangle> creates a general-purpose labeled box.
<rectangle id="service" title="Service" width="180" height="100" font-size="18">
<port id="service-in" side="left" title="in" font-size="9" />
<port id="service-out" side="right" title="out" font-size="10" />
</rectangle>
<port> creates a small labeled rectangle inside a side of its parent
rectangle. Multiple ports on the same side are spaced evenly.
Attribute Target Description
idrectangle, port Required connection reference ID
width, heightrectangle, port Size in layout pixels
title or textrectangle, port Label text
font-sizerectangle, port Label font size
sideport top, right, bottom, or left
x, yport Optional position relative to parent top-left
Port x and y values are clamped so the port remains inside the parent
rectangle.
<connection> draws an elbowed connector between items, groups, rectangles, or
ports.
Connections must be direct children of <frame> or inside a frame-level
<connections> block.
<connections kind="traffic" color="#2563eb" grid="8" scale="1">
<connection src="web" dst="app" />
<connection src="app" dst="db" color="#059669" />
</connections>
Attribute Description
src, dstCatalog ID or id/name/ref endpoint
src-side, dst-sideOptional endpoint side: top, right, bottom, or left
src-anchor, dst-anchorOptional edge anchor: top-1 through top-5, right-1 through right-5, bottom-1 through bottom-5, or left-1 through left-5
kindroute, traffic, or default connection
colorStroke color
stroke-widthStroke width
stroke-stylesolid, dashed, or dotted
start-arrowhead, end-arrowheadnone, arrow, triangle, stealth, diamond, or oval
arrowheadAlias for end-arrowhead
arrowhead-sizeLogical size s, m, or l
gridSnap grid in layout pixels
scale, coordinate-scaleBend coordinate multiplier
When src-side, dst-side, src-anchor, or dst-anchor are omitted, xaligo
chooses the endpoint sides and anchor positions automatically from the endpoint
geometry.
Use src-anchor and dst-anchor to pin an endpoint to a specific perimeter
anchor. Each side has five inset positions, so the rectangle has 20 unique
anchor positions.
top: top-1 top-2 top-3 top-4 top-5
right: right-1 right-2 right-3 right-4 right-5
bottom: bottom-1 bottom-2 bottom-3 bottom-4 bottom-5
left: left-1 left-2 left-3 left-4 left-5
Position numbers run left-to-right on top and bottom, and top-to-bottom on
left and right. Corner anchors are not shared: top-1 sits slightly inside
the top edge near the left corner, while left-1 sits slightly inside the left
edge near the top corner.
<connection src="web" dst="app"
src-anchor="right-3"
dst-anchor="left-3" />
You can also split the side and position:
<connection src="web" dst="app"
src-side="right" src-anchor="3"
dst-side="left" dst-anchor="3" />
start, near, center, far, and end are accepted aliases for anchor
positions 1, 2, 3, 4, and 5.
Endpoints can also be written as child tags. Use this form when the endpoint
reference and anchor should stay together.
<connection kind="traffic">
<src anchor="right-3">web</src>
<dst side="left" anchor="5">app</dst>
</connection>
id, ref, name, or target attributes can provide the endpoint token when
the tag has no text content.
Use kind="route" for structural paths without arrowheads. Use
kind="traffic" for directional flows.
<connection src="web" dst="app" kind="route" />
<connection src="web" dst="app" kind="traffic" color="#2563eb" />
Traffic lines that share endpoints with a route are drawn beside the route lane
when possible.
Manual bend coordinates are in frame coordinates.
<connection src="web" dst="db" grid="8">
<bend x="120" y="80" />
<bend x="120" y="220" />
<bend x="300" y="220" />
</connection>
<point>, <via>, and <waypoint> are aliases for <bend>. Coordinates can
also be grouped inside <bends>, <points>, or <path>.
Text shorthand can be used directly inside <frame>:
web --- db
web ==> db
--- expands to kind="route". ==> expands to kind="traffic".
Endpoint references must resolve to exactly one rendered item, group,
rectangle, or port. Missing endpoints, duplicate aliases, ambiguous numeric
IDs, and nested connection tags are validation errors.
Excalidraw output is editable JSON:
xaligo render diagram.xal --format excalidraw -o diagram.excalidraw
Key behavior:
Connectors are emitted as elbowed Excalidraw arrows.
Bindings use fixed edge points so arrows stay attached when opened in
Excalidraw.
Item icons and labels are grouped with a small 5x5 white anchor grid.
Anchor grid cells are drawn above connector lines and below item content so
labels remain readable while endpoints stay visible.
Previously routed lines are fed back into the router so later lines can avoid
exact or near-exact X/Y lane overlaps.
Group header tags, item icons, and labels are treated as routing obstacles
where possible.
Arrowhead sizes are serialized as Excalidraw's smallest supported size
(s) for dense diagrams.
Excalidraw remains an editable drawing tool. Its editor may re-interpret
elbowed connectors after manual edits, so SVG and PPTX can be more exact for
final presentation output.
SVG output is suitable for previews, documentation, and web publishing.
xaligo render diagram.xal --format svg -o diagram.svg
With --services, SVG can draw a legend:
xaligo render diagram.xal --format svg -o diagram.svg \
--services services.csv \
--svg-legend-position bottom
SVG rendering uses the shared orthogonal router and includes:
Route and traffic layer ordering.
Line-jump masks at interior crossings.
Automatic junction markers for shared route endpoints.
Expanded canvas/viewBox bounds for connector paths and markers.
Service legends when metadata is provided.
PPTX output is generated from a Go draw plan and written by the configured
WASM/PptxGenJS exporter.
xaligo render diagram.xal --format pptx -o diagram.pptx \
--services services.csv \
--paper A3 --orientation landscape \
--paper-margin-top 0.75 --paper-margin-bottom 0.75
PPTX-specific behavior:
Paper fitting supports named paper sizes and per-side margins.
Routing avoids icon and label obstacles where possible.
Existing routed lanes influence later paths to reduce overlap.
Anchor backgrounds are drawn before lines, while icons and labels are drawn
above lines.
Line-jump masks are drawn at interior crossings.
Legend slide(s) are added after the diagram when --services is provided.
The PPTX exporter should only translate the resolved draw plan into a
presentation. Geometry and routing decisions belong on the Go side.
XYFlow output exports nodes and edges for React Flow / XYFlow-style editors:
xaligo render diagram.xal --format xyflow -o diagram.xyflow.json
It includes nested group nodes, icon data URLs, labels, connection handles,
route/traffic metadata, layer order, line styles, and arrow markers.
Isoflow output exports an Isoflow-compatible model:
xaligo render diagram.xal --format isoflow -o diagram.isoflow.json
The model follows the upstream Isoflow shape with items, views, icons,
colors, and view rectangles / connectors.
Reference pages are split by topic. Preview tabs show rendered SVG examples,
and Code tabs show the XAL tag syntax.
This reference uses the SVG files published from etc/resources/aws/svg.
Large sections are split into paginated pages to keep local preview responsive.
Total SVG files: 6948.
This page references SVG files under etc/resources/aws/svg/Architecture-Group-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 1-15 of 15 SVG files.
AWS-Account_32
Preview
Code
<frame width="234" height="160" margin="24">
<generic-group id="aws-account" title="AWS Account" icon-id="1861" />
</frame>
<generic-group id="aws-account" title="AWS Account" icon-id="1861" />
AWS-Cloud-logo_32
Preview
Code
<frame width="263" height="160" margin="24">
<generic-group id="aws-cloud-logo" title="AWS Cloud logo" icon-id="1862" />
</frame>
<generic-group id="aws-cloud-logo" title="AWS Cloud logo" icon-id="1862" />
AWS-Cloud-logo_32_Dark
Preview
Code
<frame width="340" height="160" margin="24">
<generic-group id="aws-cloud-logo-32-dark" title="AWS Cloud logo 32 Dark" icon-id="1863" />
</frame>
<generic-group id="aws-cloud-logo-32-dark" title="AWS Cloud logo 32 Dark" icon-id="1863" />
AWS-Cloud_32
Preview
Code
<frame width="215" height="160" margin="24">
<generic-group id="aws-cloud" title="AWS Cloud" icon-id="1864" />
</frame>
<generic-group id="aws-cloud" title="AWS Cloud" icon-id="1864" />
AWS-Cloud_32_Dark
Preview
Code
<frame width="292" height="160" margin="24">
<generic-group id="aws-cloud-32-dark" title="AWS Cloud 32 Dark" icon-id="1865" />
</frame>
<generic-group id="aws-cloud-32-dark" title="AWS Cloud 32 Dark" icon-id="1865" />
AWS-IoT-Greengrass-Deployment_32
Preview
Code
<frame width="407" height="160" margin="24">
<generic-group id="aws-iot-greengrass-deployment" title="AWS IoT Greengrass Deployment" icon-id="1866" />
</frame>
<generic-group id="aws-iot-greengrass-deployment" title="AWS IoT Greengrass Deployment" icon-id="1866" />
Auto-Scaling-group_32
Preview
Code
<frame width="301" height="160" margin="24">
<generic-group id="auto-scaling-group" title="Auto Scaling group" icon-id="1867" />
</frame>
<generic-group id="auto-scaling-group" title="Auto Scaling group" icon-id="1867" />
Corporate-data-center_32
Preview
Code
<frame width="330" height="160" margin="24">
<generic-group id="corporate-data-center" title="Corporate data center" icon-id="1868" />
</frame>
<generic-group id="corporate-data-center" title="Corporate data center" icon-id="1868" />
EC2-instance-contents_32
Preview
Code
<frame width="330" height="160" margin="24">
<generic-group id="ec2-instance-contents" title="EC2 instance contents" icon-id="1869" />
</frame>
<generic-group id="ec2-instance-contents" title="EC2 instance contents" icon-id="1869" />
Private-subnet_32
Preview
Code
<frame width="263" height="160" margin="24">
<generic-group id="private-subnet" title="Private subnet" icon-id="1870" />
</frame>
<generic-group id="private-subnet" title="Private subnet" icon-id="1870" />
Public-subnet_32
Preview
Code
<frame width="253" height="160" margin="24">
<generic-group id="public-subnet" title="Public subnet" icon-id="1871" />
</frame>
<generic-group id="public-subnet" title="Public subnet" icon-id="1871" />
Region_32
Preview
Code
<frame width="204" height="160" margin="24">
<generic-group id="region" title="Region" icon-id="1872" />
</frame>
<generic-group id="region" title="Region" icon-id="1872" />
Server-contents_32
Preview
Code
<frame width="272" height="160" margin="24">
<generic-group id="server-contents" title="Server contents" icon-id="1873" />
</frame>
<generic-group id="server-contents" title="Server contents" icon-id="1873" />
Spot-Fleet_32
Preview
Code
<frame width="224" height="160" margin="24">
<generic-group id="spot-fleet" title="Spot Fleet" icon-id="1874" />
</frame>
<generic-group id="spot-fleet" title="Spot Fleet" icon-id="1874" />
Virtual-private-cloud-VPC_32
Preview
Code
<frame width="368" height="160" margin="24">
<generic-group id="virtual-private-cloud-vpc" title="Virtual private cloud VPC" icon-id="1875" />
</frame>
<generic-group id="virtual-private-cloud-vpc" title="Virtual private cloud VPC" icon-id="1875" />
This section contains 1236 SVG files from etc/resources/aws/svg/Architecture-Service-Icons.
Open a page below to load a smaller set of previews.
This page references SVG files under etc/resources/aws/svg/Architecture-Service-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 1-90 of 1236 SVG files.
Back to section index
Arch_AWS-Clean-Rooms_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1102" />
</frame>
<item id="1102" />
Arch_AWS-Data-Exchange_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1103" />
</frame>
<item id="1103" />
Arch_AWS-Entity-Resolution_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1104" />
</frame>
<item id="1104" />
Arch_AWS-Glue-DataBrew_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1105" />
</frame>
<item id="1105" />
Arch_AWS-Glue_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1106" />
</frame>
<item id="1106" />
Arch_AWS-Lake-Formation_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1107" />
</frame>
<item id="1107" />
Arch_Amazon-Athena_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1108" />
</frame>
<item id="1108" />
Arch_Amazon-CloudSearch_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1109" />
</frame>
<item id="1109" />
Arch_Amazon-Data-Firehose_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1110" />
</frame>
<item id="1110" />
Arch_Amazon-DataZone_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1111" />
</frame>
<item id="1111" />
Arch_Amazon-EMR_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1112" />
</frame>
<item id="1112" />
Arch_Amazon-FinSpace_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1113" />
</frame>
<item id="1113" />
Arch_Amazon-Kinesis-Data-Streams_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1114" />
</frame>
<item id="1114" />
Arch_Amazon-Kinesis-Video-Streams_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1115" />
</frame>
<item id="1115" />
Arch_Amazon-Kinesis_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1116" />
</frame>
<item id="1116" />
Arch_Amazon-Managed-Service-for-Apache-Flink_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1117" />
</frame>
<item id="1117" />
Arch_Amazon-Managed-Streaming-for-Apache-Kafka_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1118" />
</frame>
<item id="1118" />
Arch_Amazon-OpenSearch-Service_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1119" />
</frame>
<item id="1119" />
Arch_Amazon-QuickSight_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1120" />
</frame>
<item id="1120" />
Arch_Amazon-Redshift_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1121" />
</frame>
<item id="1121" />
Arch_Amazon-SageMaker_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1122" />
</frame>
<item id="1122" />
Arch_AWS-Clean-Rooms_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1081" />
</frame>
<item id="1081" />
Arch_AWS-Data-Exchange_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1082" />
</frame>
<item id="1082" />
Arch_AWS-Entity-Resolution_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1083" />
</frame>
<item id="1083" />
Arch_AWS-Glue-DataBrew_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1084" />
</frame>
<item id="1084" />
Arch_AWS-Glue_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1085" />
</frame>
<item id="1085" />
Arch_AWS-Lake-Formation_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1086" />
</frame>
<item id="1086" />
Arch_Amazon-Athena_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1087" />
</frame>
<item id="1087" />
Arch_Amazon-CloudSearch_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1088" />
</frame>
<item id="1088" />
Arch_Amazon-Data-Firehose_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1089" />
</frame>
<item id="1089" />
Arch_Amazon-DataZone_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1090" />
</frame>
<item id="1090" />
Arch_Amazon-EMR_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1091" />
</frame>
<item id="1091" />
Arch_Amazon-FinSpace_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1092" />
</frame>
<item id="1092" />
Arch_Amazon-Kinesis-Data-Streams_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1093" />
</frame>
<item id="1093" />
Arch_Amazon-Kinesis-Video-Streams_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1094" />
</frame>
<item id="1094" />
Arch_Amazon-Kinesis_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1095" />
</frame>
<item id="1095" />
Arch_Amazon-Managed-Service-for-Apache-Flink_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1096" />
</frame>
<item id="1096" />
Arch_Amazon-Managed-Streaming-for-Apache-Kafka_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1097" />
</frame>
<item id="1097" />
Arch_Amazon-OpenSearch-Service_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1098" />
</frame>
<item id="1098" />
Arch_Amazon-QuickSight_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1099" />
</frame>
<item id="1099" />
Arch_Amazon-Redshift_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1100" />
</frame>
<item id="1100" />
Arch_Amazon-SageMaker_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1101" />
</frame>
<item id="1101" />
Arch_AWS-Clean-Rooms_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1144" />
</frame>
<item id="1144" />
Arch_AWS-Data-Exchange_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1145" />
</frame>
<item id="1145" />
Arch_AWS-Entity-Resolution_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1146" />
</frame>
<item id="1146" />
Arch_AWS-Glue-DataBrew_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1147" />
</frame>
<item id="1147" />
Arch_AWS-Glue_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1148" />
</frame>
<item id="1148" />
Arch_AWS-Lake-Formation_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1149" />
</frame>
<item id="1149" />
Arch_Amazon-Athena_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1150" />
</frame>
<item id="1150" />
Arch_Amazon-CloudSearch_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1151" />
</frame>
<item id="1151" />
Arch_Amazon-Data-Firehose_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1152" />
</frame>
<item id="1152" />
Arch_Amazon-DataZone_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1153" />
</frame>
<item id="1153" />
Arch_Amazon-EMR_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1154" />
</frame>
<item id="1154" />
Arch_Amazon-FinSpace_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1155" />
</frame>
<item id="1155" />
Arch_Amazon-Kinesis-Data-Streams_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1156" />
</frame>
<item id="1156" />
Arch_Amazon-Kinesis-Video-Streams_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1157" />
</frame>
<item id="1157" />
Arch_Amazon-Kinesis_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1158" />
</frame>
<item id="1158" />
Arch_Amazon-Managed-Service-for-Apache-Flink_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1159" />
</frame>
<item id="1159" />
Arch_Amazon-Managed-Streaming-for-Apache-Kafka_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1160" />
</frame>
<item id="1160" />
Arch_Amazon-OpenSearch-Service_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1161" />
</frame>
<item id="1161" />
Arch_Amazon-QuickSight_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1162" />
</frame>
<item id="1162" />
Arch_Amazon-Redshift_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1163" />
</frame>
<item id="1163" />
Arch_Amazon-SageMaker_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1164" />
</frame>
<item id="1164" />
Arch_AWS-Clean-Rooms_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1123" />
</frame>
<item id="1123" />
Arch_AWS-Data-Exchange_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1124" />
</frame>
<item id="1124" />
Arch_AWS-Entity-Resolution_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1125" />
</frame>
<item id="1125" />
Arch_AWS-Glue-DataBrew_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1126" />
</frame>
<item id="1126" />
Arch_AWS-Glue_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1127" />
</frame>
<item id="1127" />
Arch_AWS-Lake-Formation_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1128" />
</frame>
<item id="1128" />
Arch_Amazon-Athena_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1129" />
</frame>
<item id="1129" />
Arch_Amazon-CloudSearch_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1130" />
</frame>
<item id="1130" />
Arch_Amazon-Data-Firehose_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1131" />
</frame>
<item id="1131" />
Arch_Amazon-DataZone_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1132" />
</frame>
<item id="1132" />
Arch_Amazon-EMR_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1133" />
</frame>
<item id="1133" />
Arch_Amazon-FinSpace_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1134" />
</frame>
<item id="1134" />
Arch_Amazon-Kinesis-Data-Streams_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1135" />
</frame>
<item id="1135" />
Arch_Amazon-Kinesis-Video-Streams_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1136" />
</frame>
<item id="1136" />
Arch_Amazon-Kinesis_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1137" />
</frame>
<item id="1137" />
Arch_Amazon-Managed-Service-for-Apache-Flink_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1138" />
</frame>
<item id="1138" />
Arch_Amazon-Managed-Streaming-for-Apache-Kafka_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1139" />
</frame>
<item id="1139" />
Arch_Amazon-OpenSearch-Service_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1140" />
</frame>
<item id="1140" />
Arch_Amazon-QuickSight_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1141" />
</frame>
<item id="1141" />
Arch_Amazon-Redshift_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1142" />
</frame>
<item id="1142" />
Arch_Amazon-SageMaker_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1143" />
</frame>
<item id="1143" />
Arch_AWS-AppSync_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="707" />
</frame>
<item id="707" />
Arch_AWS-B2B-Data-Interchange_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="708" />
</frame>
<item id="708" />
Arch_AWS-Express-Workflows_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="709" />
</frame>
<item id="709" />
Arch_AWS-Step-Functions_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="710" />
</frame>
<item id="710" />
Arch_Amazon-AppFlow_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="711" />
</frame>
<item id="711" />
Arch_Amazon-EventBridge_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="712" />
</frame>
<item id="712" />
This page references SVG files under etc/resources/aws/svg/Architecture-Service-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 91-180 of 1236 SVG files.
Back to section index
Arch_Amazon-MQ_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="713" />
</frame>
<item id="713" />
Arch_Amazon-Managed-Workflows-for-Apache-Airflow_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="714" />
</frame>
<item id="714" />
Arch_Amazon-Simple-Notification-Service_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="715" />
</frame>
<item id="715" />
Arch_Amazon-Simple-Queue-Service_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="716" />
</frame>
<item id="716" />
Arch_AWS-AppSync_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="697" />
</frame>
<item id="697" />
Arch_AWS-B2B-Data-Interchange_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="698" />
</frame>
<item id="698" />
Arch_AWS-Express-Workflows_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="699" />
</frame>
<item id="699" />
Arch_AWS-Step-Functions_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="700" />
</frame>
<item id="700" />
Arch_Amazon-AppFlow_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="701" />
</frame>
<item id="701" />
Arch_Amazon-EventBridge_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="702" />
</frame>
<item id="702" />
Arch_Amazon-MQ_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="703" />
</frame>
<item id="703" />
Arch_Amazon-Managed-Workflows-for-Apache-Airflow_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="704" />
</frame>
<item id="704" />
Arch_Amazon-Simple-Notification-Service_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="705" />
</frame>
<item id="705" />
Arch_Amazon-Simple-Queue-Service_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="706" />
</frame>
<item id="706" />
Arch_AWS-AppSync_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="727" />
</frame>
<item id="727" />
Arch_AWS-B2B-Data-Interchange_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="728" />
</frame>
<item id="728" />
Arch_AWS-Express-Workflows_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="729" />
</frame>
<item id="729" />
Arch_AWS-Step-Functions_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="730" />
</frame>
<item id="730" />
Arch_Amazon-AppFlow_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="731" />
</frame>
<item id="731" />
Arch_Amazon-EventBridge_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="732" />
</frame>
<item id="732" />
Arch_Amazon-MQ_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="733" />
</frame>
<item id="733" />
Arch_Amazon-Managed-Workflows-for-Apache-Airflow_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="734" />
</frame>
<item id="734" />
Arch_Amazon-Simple-Notification-Service_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="735" />
</frame>
<item id="735" />
Arch_Amazon-Simple-Queue-Service_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="736" />
</frame>
<item id="736" />
Arch_AWS-AppSync_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="717" />
</frame>
<item id="717" />
Arch_AWS-B2B-Data-Interchange_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="718" />
</frame>
<item id="718" />
Arch_AWS-Express-Workflows_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="719" />
</frame>
<item id="719" />
Arch_AWS-Step-Functions_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="720" />
</frame>
<item id="720" />
Arch_Amazon-AppFlow_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="721" />
</frame>
<item id="721" />
Arch_Amazon-EventBridge_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="722" />
</frame>
<item id="722" />
Arch_Amazon-MQ_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="723" />
</frame>
<item id="723" />
Arch_Amazon-Managed-Workflows-for-Apache-Airflow_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="724" />
</frame>
<item id="724" />
Arch_Amazon-Simple-Notification-Service_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="725" />
</frame>
<item id="725" />
Arch_Amazon-Simple-Queue-Service_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="726" />
</frame>
<item id="726" />
Arch_AWS-App-Studio_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="878" />
</frame>
<item id="878" />
Arch_AWS-Deep-Learning-AMIs_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="879" />
</frame>
<item id="879" />
Arch_AWS-Deep-Learning-Containers_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="880" />
</frame>
<item id="880" />
Arch_AWS-DeepComposer_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="881" />
</frame>
<item id="881" />
Arch_AWS-DeepRacer_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="882" />
</frame>
<item id="882" />
Arch_AWS-HealthImaging_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="883" />
</frame>
<item id="883" />
Arch_AWS-HealthLake_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="884" />
</frame>
<item id="884" />
Arch_AWS-HealthOmics_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="885" />
</frame>
<item id="885" />
Arch_AWS-HealthScribe_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="886" />
</frame>
<item id="886" />
Arch_AWS-Neuron_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="887" />
</frame>
<item id="887" />
Arch_AWS-Panorama_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="888" />
</frame>
<item id="888" />
Arch_Amazon-Augmented-AI-A2I_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="889" />
</frame>
<item id="889" />
Arch_Amazon-Bedrock_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="890" />
</frame>
<item id="890" />
Arch_Amazon-CodeGuru_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="891" />
</frame>
<item id="891" />
Arch_Amazon-CodeWhisperer_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="892" />
</frame>
<item id="892" />
Arch_Amazon-Comprehend-Medical_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="893" />
</frame>
<item id="893" />
Arch_Amazon-Comprehend_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="894" />
</frame>
<item id="894" />
Arch_Amazon-DevOps-Guru_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="895" />
</frame>
<item id="895" />
Arch_Amazon-Elastic-Inference_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="896" />
</frame>
<item id="896" />
Arch_Amazon-Forecast_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="897" />
</frame>
<item id="897" />
Arch_Amazon-Fraud-Detector_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="898" />
</frame>
<item id="898" />
Arch_Amazon-Kendra_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="899" />
</frame>
<item id="899" />
Arch_Amazon-Lex_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="900" />
</frame>
<item id="900" />
Arch_Amazon-Lookout-for-Equipment_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="901" />
</frame>
<item id="901" />
Arch_Amazon-Lookout-for-Metrics_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="902" />
</frame>
<item id="902" />
Arch_Amazon-Lookout-for-Vision_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="903" />
</frame>
<item id="903" />
Arch_Amazon-Monitron_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="904" />
</frame>
<item id="904" />
Arch_Amazon-Nova_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="905" />
</frame>
<item id="905" />
Arch_Amazon-Personalize_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="906" />
</frame>
<item id="906" />
Arch_Amazon-Polly_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="907" />
</frame>
<item id="907" />
Arch_Amazon-Q_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="908" />
</frame>
<item id="908" />
Arch_Amazon-Rekognition_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="909" />
</frame>
<item id="909" />
Arch_Amazon-SageMaker-AI_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="910" />
</frame>
<item id="910" />
Arch_Amazon-SageMaker-Ground-Truth_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="911" />
</frame>
<item id="911" />
Arch_Amazon-SageMaker-Studio-Lab_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="912" />
</frame>
<item id="912" />
Arch_Amazon-Textract_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="913" />
</frame>
<item id="913" />
Arch_Amazon-Transcribe_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="914" />
</frame>
<item id="914" />
Arch_Amazon-Translate_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="915" />
</frame>
<item id="915" />
Arch_Apache-MXNet-on-AWS_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="916" />
</frame>
<item id="916" />
Arch_PyTorch-on-AWS_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="917" />
</frame>
<item id="917" />
Arch_TensorFlow-on-AWS_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="918" />
</frame>
<item id="918" />
Arch_AWS-App-Studio_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="837" />
</frame>
<item id="837" />
Arch_AWS-Deep-Learning-AMIs_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="838" />
</frame>
<item id="838" />
Arch_AWS-Deep-Learning-Containers_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="839" />
</frame>
<item id="839" />
Arch_AWS-DeepComposer_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="840" />
</frame>
<item id="840" />
Arch_AWS-DeepRacer_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="841" />
</frame>
<item id="841" />
Arch_AWS-HealthImaging_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="842" />
</frame>
<item id="842" />
Arch_AWS-HealthLake_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="843" />
</frame>
<item id="843" />
Arch_AWS-HealthOmics_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="844" />
</frame>
<item id="844" />
Arch_AWS-HealthScribe_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="845" />
</frame>
<item id="845" />
Arch_AWS-Neuron_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="846" />
</frame>
<item id="846" />
Arch_AWS-Panorama_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="847" />
</frame>
<item id="847" />
Arch_Amazon-Augmented-AI-A2I_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="848" />
</frame>
<item id="848" />
Arch_Amazon-Bedrock_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="849" />
</frame>
<item id="849" />
Arch_Amazon-CodeGuru_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="850" />
</frame>
<item id="850" />
Arch_Amazon-CodeWhisperer_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="851" />
</frame>
<item id="851" />
This page references SVG files under etc/resources/aws/svg/Architecture-Service-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 181-270 of 1236 SVG files.
Back to section index
Arch_Amazon-Comprehend-Medical_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="852" />
</frame>
<item id="852" />
Arch_Amazon-Comprehend_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="853" />
</frame>
<item id="853" />
Arch_Amazon-DevOps-Guru_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="854" />
</frame>
<item id="854" />
Arch_Amazon-Elastic-Inference_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="855" />
</frame>
<item id="855" />
Arch_Amazon-Forecast_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="856" />
</frame>
<item id="856" />
Arch_Amazon-Fraud-Detector_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="857" />
</frame>
<item id="857" />
Arch_Amazon-Kendra_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="858" />
</frame>
<item id="858" />
Arch_Amazon-Lex_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="859" />
</frame>
<item id="859" />
Arch_Amazon-Lookout-for-Equipment_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="860" />
</frame>
<item id="860" />
Arch_Amazon-Lookout-for-Metrics_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="861" />
</frame>
<item id="861" />
Arch_Amazon-Lookout-for-Vision_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="862" />
</frame>
<item id="862" />
Arch_Amazon-Monitron_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="863" />
</frame>
<item id="863" />
Arch_Amazon-Nova_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="864" />
</frame>
<item id="864" />
Arch_Amazon-Personalize_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="865" />
</frame>
<item id="865" />
Arch_Amazon-Polly_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="866" />
</frame>
<item id="866" />
Arch_Amazon-Q_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="867" />
</frame>
<item id="867" />
Arch_Amazon-Rekognition_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="868" />
</frame>
<item id="868" />
Arch_Amazon-SageMaker-AI_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="869" />
</frame>
<item id="869" />
Arch_Amazon-SageMaker-Ground-Truth_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="870" />
</frame>
<item id="870" />
Arch_Amazon-SageMaker-Studio-Lab_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="871" />
</frame>
<item id="871" />
Arch_Amazon-Textract_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="872" />
</frame>
<item id="872" />
Arch_Amazon-Transcribe_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="873" />
</frame>
<item id="873" />
Arch_Amazon-Translate_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="874" />
</frame>
<item id="874" />
Arch_Apache-MXNet-on-AWS_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="875" />
</frame>
<item id="875" />
Arch_PyTorch-on-AWS_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="876" />
</frame>
<item id="876" />
Arch_TensorFlow-on-AWS_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="877" />
</frame>
<item id="877" />
Arch_AWS-App-Studio_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="960" />
</frame>
<item id="960" />
Arch_AWS-Deep-Learning-AMIs_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="961" />
</frame>
<item id="961" />
Arch_AWS-Deep-Learning-Containers_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="962" />
</frame>
<item id="962" />
Arch_AWS-DeepComposer_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="963" />
</frame>
<item id="963" />
Arch_AWS-DeepRacer_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="964" />
</frame>
<item id="964" />
Arch_AWS-HealthImaging_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="965" />
</frame>
<item id="965" />
Arch_AWS-HealthLake_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="966" />
</frame>
<item id="966" />
Arch_AWS-HealthOmics_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="967" />
</frame>
<item id="967" />
Arch_AWS-HealthScribe_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="968" />
</frame>
<item id="968" />
Arch_AWS-Neuron_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="969" />
</frame>
<item id="969" />
Arch_AWS-Panorama_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="970" />
</frame>
<item id="970" />
Arch_Amazon-Augmented-AI-A2I_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="971" />
</frame>
<item id="971" />
Arch_Amazon-Bedrock_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="972" />
</frame>
<item id="972" />
Arch_Amazon-CodeGuru_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="973" />
</frame>
<item id="973" />
Arch_Amazon-CodeWhisperer_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="974" />
</frame>
<item id="974" />
Arch_Amazon-Comprehend-Medical_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="975" />
</frame>
<item id="975" />
Arch_Amazon-Comprehend_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="976" />
</frame>
<item id="976" />
Arch_Amazon-DevOps-Guru_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="977" />
</frame>
<item id="977" />
Arch_Amazon-Elastic-Inference_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="978" />
</frame>
<item id="978" />
Arch_Amazon-Forecast_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="979" />
</frame>
<item id="979" />
Arch_Amazon-Fraud-Detector_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="980" />
</frame>
<item id="980" />
Arch_Amazon-Kendra_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="981" />
</frame>
<item id="981" />
Arch_Amazon-Lex_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="982" />
</frame>
<item id="982" />
Arch_Amazon-Lookout-for-Equipment_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="983" />
</frame>
<item id="983" />
Arch_Amazon-Lookout-for-Metrics_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="984" />
</frame>
<item id="984" />
Arch_Amazon-Lookout-for-Vision_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="985" />
</frame>
<item id="985" />
Arch_Amazon-Monitron_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="986" />
</frame>
<item id="986" />
Arch_Amazon-Nova_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="987" />
</frame>
<item id="987" />
Arch_Amazon-Personalize_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="988" />
</frame>
<item id="988" />
Arch_Amazon-Polly_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="989" />
</frame>
<item id="989" />
Arch_Amazon-Q_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="990" />
</frame>
<item id="990" />
Arch_Amazon-Rekognition_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="991" />
</frame>
<item id="991" />
Arch_Amazon-SageMaker-AI_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="992" />
</frame>
<item id="992" />
Arch_Amazon-SageMaker-Ground-Truth_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="993" />
</frame>
<item id="993" />
Arch_Amazon-SageMaker-Studio-Lab_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="994" />
</frame>
<item id="994" />
Arch_Amazon-Textract_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="995" />
</frame>
<item id="995" />
Arch_Amazon-Transcribe_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="996" />
</frame>
<item id="996" />
Arch_Amazon-Translate_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="997" />
</frame>
<item id="997" />
Arch_Apache-MXNet-on-AWS_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="998" />
</frame>
<item id="998" />
Arch_PyTorch-on-AWS_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="999" />
</frame>
<item id="999" />
Arch_TensorFlow-on-AWS_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1000" />
</frame>
<item id="1000" />
Arch_AWS-App-Studio_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="919" />
</frame>
<item id="919" />
Arch_AWS-Deep-Learning-AMIs_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="920" />
</frame>
<item id="920" />
Arch_AWS-Deep-Learning-Containers_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="921" />
</frame>
<item id="921" />
Arch_AWS-DeepComposer_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="922" />
</frame>
<item id="922" />
Arch_AWS-DeepRacer_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="923" />
</frame>
<item id="923" />
Arch_AWS-HealthImaging_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="924" />
</frame>
<item id="924" />
Arch_AWS-HealthLake_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="925" />
</frame>
<item id="925" />
Arch_AWS-HealthOmics_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="926" />
</frame>
<item id="926" />
Arch_AWS-HealthScribe_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="927" />
</frame>
<item id="927" />
Arch_AWS-Neuron_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="928" />
</frame>
<item id="928" />
Arch_AWS-Panorama_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="929" />
</frame>
<item id="929" />
Arch_Amazon-Augmented-AI-A2I_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="930" />
</frame>
<item id="930" />
Arch_Amazon-Bedrock_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="931" />
</frame>
<item id="931" />
Arch_Amazon-CodeGuru_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="932" />
</frame>
<item id="932" />
Arch_Amazon-CodeWhisperer_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="933" />
</frame>
<item id="933" />
Arch_Amazon-Comprehend-Medical_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="934" />
</frame>
<item id="934" />
Arch_Amazon-Comprehend_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="935" />
</frame>
<item id="935" />
Arch_Amazon-DevOps-Guru_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="936" />
</frame>
<item id="936" />
Arch_Amazon-Elastic-Inference_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="937" />
</frame>
<item id="937" />
Arch_Amazon-Forecast_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="938" />
</frame>
<item id="938" />
Arch_Amazon-Fraud-Detector_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="939" />
</frame>
<item id="939" />
Arch_Amazon-Kendra_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="940" />
</frame>
<item id="940" />
Arch_Amazon-Lex_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="941" />
</frame>
<item id="941" />
This page references SVG files under etc/resources/aws/svg/Architecture-Service-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 271-360 of 1236 SVG files.
Back to section index
Arch_Amazon-Lookout-for-Equipment_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="942" />
</frame>
<item id="942" />
Arch_Amazon-Lookout-for-Metrics_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="943" />
</frame>
<item id="943" />
Arch_Amazon-Lookout-for-Vision_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="944" />
</frame>
<item id="944" />
Arch_Amazon-Monitron_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="945" />
</frame>
<item id="945" />
Arch_Amazon-Nova_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="946" />
</frame>
<item id="946" />
Arch_Amazon-Personalize_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="947" />
</frame>
<item id="947" />
Arch_Amazon-Polly_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="948" />
</frame>
<item id="948" />
Arch_Amazon-Q_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="949" />
</frame>
<item id="949" />
Arch_Amazon-Rekognition_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="950" />
</frame>
<item id="950" />
Arch_Amazon-SageMaker-AI_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="951" />
</frame>
<item id="951" />
Arch_Amazon-SageMaker-Ground-Truth_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="952" />
</frame>
<item id="952" />
Arch_Amazon-SageMaker-Studio-Lab_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="953" />
</frame>
<item id="953" />
Arch_Amazon-Textract_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="954" />
</frame>
<item id="954" />
Arch_Amazon-Transcribe_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="955" />
</frame>
<item id="955" />
Arch_Amazon-Translate_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="956" />
</frame>
<item id="956" />
Arch_Apache-MXNet-on-AWS_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="957" />
</frame>
<item id="957" />
Arch_PyTorch-on-AWS_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="958" />
</frame>
<item id="958" />
Arch_TensorFlow-on-AWS_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="959" />
</frame>
<item id="959" />
Arch_Amazon-Managed-Blockchain_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="375" />
</frame>
<item id="375" />
Arch_Amazon-Quantum-Ledger-Database_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="376" />
</frame>
<item id="376" />
Arch_Amazon-Managed-Blockchain_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="373" />
</frame>
<item id="373" />
Arch_Amazon-Quantum-Ledger-Database_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="374" />
</frame>
<item id="374" />
Arch_Amazon-Managed-Blockchain_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="379" />
</frame>
<item id="379" />
Arch_Amazon-Quantum-Ledger-Database_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="380" />
</frame>
<item id="380" />
Arch_Amazon-Managed-Blockchain_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="377" />
</frame>
<item id="377" />
Arch_Amazon-Quantum-Ledger-Database_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="378" />
</frame>
<item id="378" />
Arch_AWS-AppFabric_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="331" />
</frame>
<item id="331" />
Arch_AWS-End-User-Messaging_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="332" />
</frame>
<item id="332" />
Arch_AWS-Supply-Chain_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="333" />
</frame>
<item id="333" />
Arch_AWS-Wickr_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="334" />
</frame>
<item id="334" />
Arch_Alexa-For-Business_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="335" />
</frame>
<item id="335" />
Arch_Amazon-Chime-SDK_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="336" />
</frame>
<item id="336" />
Arch_Amazon-Chime_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="337" />
</frame>
<item id="337" />
Arch_Amazon-Connect_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="338" />
</frame>
<item id="338" />
Arch_Amazon-Pinpoint-APIs_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="339" />
</frame>
<item id="339" />
Arch_Amazon-Pinpoint_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="340" />
</frame>
<item id="340" />
Arch_Amazon-Simple-Email-Service_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="341" />
</frame>
<item id="341" />
Arch_Amazon-WorkDocs-SDK_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="342" />
</frame>
<item id="342" />
Arch_Amazon-WorkDocs_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="343" />
</frame>
<item id="343" />
Arch_Amazon-WorkMail_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="344" />
</frame>
<item id="344" />
Arch_AWS-AppFabric_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="317" />
</frame>
<item id="317" />
Arch_AWS-End-User-Messaging_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="318" />
</frame>
<item id="318" />
Arch_AWS-Supply-Chain_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="319" />
</frame>
<item id="319" />
Arch_AWS-Wickr_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="320" />
</frame>
<item id="320" />
Arch_Alexa-For-Business_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="321" />
</frame>
<item id="321" />
Arch_Amazon-Chime-SDK_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="322" />
</frame>
<item id="322" />
Arch_Amazon-Chime_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="323" />
</frame>
<item id="323" />
Arch_Amazon-Connect_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="324" />
</frame>
<item id="324" />
Arch_Amazon-Pinpoint-APIs_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="325" />
</frame>
<item id="325" />
Arch_Amazon-Pinpoint_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="326" />
</frame>
<item id="326" />
Arch_Amazon-Simple-Email-Service_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="327" />
</frame>
<item id="327" />
Arch_Amazon-WorkDocs-SDK_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="328" />
</frame>
<item id="328" />
Arch_Amazon-WorkDocs_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="329" />
</frame>
<item id="329" />
Arch_Amazon-WorkMail_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="330" />
</frame>
<item id="330" />
Arch_AWS-AppFabric_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="359" />
</frame>
<item id="359" />
Arch_AWS-End-User-Messaging_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="360" />
</frame>
<item id="360" />
Arch_AWS-Supply-Chain_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="361" />
</frame>
<item id="361" />
Arch_AWS-Wickr_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="362" />
</frame>
<item id="362" />
Arch_Alexa-For-Business_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="363" />
</frame>
<item id="363" />
Arch_Amazon-Chime-SDK_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="364" />
</frame>
<item id="364" />
Arch_Amazon-Chime_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="365" />
</frame>
<item id="365" />
Arch_Amazon-Connect_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="366" />
</frame>
<item id="366" />
Arch_Amazon-Pinpoint-APIs_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="367" />
</frame>
<item id="367" />
Arch_Amazon-Pinpoint_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="368" />
</frame>
<item id="368" />
Arch_Amazon-Simple-Email-Service_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="369" />
</frame>
<item id="369" />
Arch_Amazon-WorkDocs-SDK_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="370" />
</frame>
<item id="370" />
Arch_Amazon-WorkDocs_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="371" />
</frame>
<item id="371" />
Arch_Amazon-WorkMail_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="372" />
</frame>
<item id="372" />
Arch_AWS-AppFabric_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="345" />
</frame>
<item id="345" />
Arch_AWS-End-User-Messaging_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="346" />
</frame>
<item id="346" />
Arch_AWS-Supply-Chain_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="347" />
</frame>
<item id="347" />
Arch_AWS-Wickr_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="348" />
</frame>
<item id="348" />
Arch_Alexa-For-Business_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="349" />
</frame>
<item id="349" />
Arch_Amazon-Chime-SDK_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="350" />
</frame>
<item id="350" />
Arch_Amazon-Chime_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="351" />
</frame>
<item id="351" />
Arch_Amazon-Connect_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="352" />
</frame>
<item id="352" />
Arch_Amazon-Pinpoint-APIs_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="353" />
</frame>
<item id="353" />
Arch_Amazon-Pinpoint_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="354" />
</frame>
<item id="354" />
Arch_Amazon-Simple-Email-Service_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="355" />
</frame>
<item id="355" />
Arch_Amazon-WorkDocs-SDK_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="356" />
</frame>
<item id="356" />
Arch_Amazon-WorkDocs_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="357" />
</frame>
<item id="357" />
Arch_Amazon-WorkMail_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="358" />
</frame>
<item id="358" />
Arch_AWS-Billing-Conductor_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="191" />
</frame>
<item id="191" />
Arch_AWS-Budgets_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="192" />
</frame>
<item id="192" />
Arch_AWS-Cost-Explorer_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="193" />
</frame>
<item id="193" />
Arch_AWS-Cost-and-Usage-Report_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="194" />
</frame>
<item id="194" />
Arch_Reserved-Instance-Reporting_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="195" />
</frame>
<item id="195" />
Arch_Savings-Plans_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="196" />
</frame>
<item id="196" />
Arch_AWS-Billing-Conductor_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="185" />
</frame>
<item id="185" />
Arch_AWS-Budgets_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="186" />
</frame>
<item id="186" />
This page references SVG files under etc/resources/aws/svg/Architecture-Service-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 361-450 of 1236 SVG files.
Back to section index
Arch_AWS-Cost-Explorer_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="187" />
</frame>
<item id="187" />
Arch_AWS-Cost-and-Usage-Report_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="188" />
</frame>
<item id="188" />
Arch_Reserved-Instance-Reporting_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="189" />
</frame>
<item id="189" />
Arch_Savings-Plans_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="190" />
</frame>
<item id="190" />
Arch_AWS-Billing-Conductor_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="203" />
</frame>
<item id="203" />
Arch_AWS-Budgets_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="204" />
</frame>
<item id="204" />
Arch_AWS-Cost-Explorer_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="205" />
</frame>
<item id="205" />
Arch_AWS-Cost-and-Usage-Report_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="206" />
</frame>
<item id="206" />
Arch_Reserved-Instance-Reporting_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="207" />
</frame>
<item id="207" />
Arch_Savings-Plans_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="208" />
</frame>
<item id="208" />
Arch_AWS-Billing-Conductor_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="197" />
</frame>
<item id="197" />
Arch_AWS-Budgets_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="198" />
</frame>
<item id="198" />
Arch_AWS-Cost-Explorer_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="199" />
</frame>
<item id="199" />
Arch_AWS-Cost-and-Usage-Report_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200" />
</frame>
<item id="200" />
Arch_Reserved-Instance-Reporting_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="201" />
</frame>
<item id="201" />
Arch_Savings-Plans_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="202" />
</frame>
<item id="202" />
Arch_AWS-App-Runner_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="34" />
</frame>
<item id="34" />
Arch_AWS-Batch_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="35" />
</frame>
<item id="35" />
Arch_AWS-Compute-Optimizer_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="36" />
</frame>
<item id="36" />
Arch_AWS-Elastic-Beanstalk_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="37" />
</frame>
<item id="37" />
Arch_AWS-Lambda_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="38" />
</frame>
<item id="38" />
Arch_AWS-Local-Zones_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="39" />
</frame>
<item id="39" />
Arch_AWS-Nitro-Enclaves_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="40" />
</frame>
<item id="40" />
Arch_AWS-Outposts-family_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="41" />
</frame>
<item id="41" />
Arch_AWS-Outposts-rack_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="42" />
</frame>
<item id="42" />
Arch_AWS-Outposts-servers_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="43" />
</frame>
<item id="43" />
Arch_AWS-Parallel-Cluster_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="44" />
</frame>
<item id="44" />
Arch_AWS-Parallel-Computing-Service_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="45" />
</frame>
<item id="45" />
Arch_AWS-Serverless-Application-Repository_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="46" />
</frame>
<item id="46" />
Arch_AWS-SimSpace-Weaver_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="47" />
</frame>
<item id="47" />
Arch_AWS-Wavelength_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="48" />
</frame>
<item id="48" />
Arch_Amazon-DCV_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="49" />
</frame>
<item id="49" />
Arch_Amazon-EC2-Auto-Scaling_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="50" />
</frame>
<item id="50" />
Arch_Amazon-EC2-Image-Builder_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="51" />
</frame>
<item id="51" />
Arch_Amazon-EC2_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="52" />
</frame>
<item id="52" />
Arch_Amazon-Elastic-VMware-Service_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="53" />
</frame>
<item id="53" />
Arch_Amazon-Lightsail-for-Research_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="54" />
</frame>
<item id="54" />
Arch_Amazon-Lightsail_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="55" />
</frame>
<item id="55" />
Arch_Bottlerocket_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="56" />
</frame>
<item id="56" />
Arch_Elastic-Fabric-Adapter_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="57" />
</frame>
<item id="57" />
Arch_NICE-EnginFrame_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="58" />
</frame>
<item id="58" />
Arch_AWS-App-Runner_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="9" />
</frame>
<item id="9" />
Arch_AWS-Batch_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="10" />
</frame>
<item id="10" />
Arch_AWS-Compute-Optimizer_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="11" />
</frame>
<item id="11" />
Arch_AWS-Elastic-Beanstalk_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="12" />
</frame>
<item id="12" />
Arch_AWS-Lambda_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="13" />
</frame>
<item id="13" />
Arch_AWS-Local-Zones_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="14" />
</frame>
<item id="14" />
Arch_AWS-Nitro-Enclaves_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="15" />
</frame>
<item id="15" />
Arch_AWS-Outposts-family_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="16" />
</frame>
<item id="16" />
Arch_AWS-Outposts-rack_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="17" />
</frame>
<item id="17" />
Arch_AWS-Outposts-servers_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="18" />
</frame>
<item id="18" />
Arch_AWS-Parallel-Cluster_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="19" />
</frame>
<item id="19" />
Arch_AWS-Parallel-Computing-Service_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="20" />
</frame>
<item id="20" />
Arch_AWS-Serverless-Application-Repository_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="21" />
</frame>
<item id="21" />
Arch_AWS-SimSpace-Weaver_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="22" />
</frame>
<item id="22" />
Arch_AWS-Wavelength_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="23" />
</frame>
<item id="23" />
Arch_Amazon-DCV_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="24" />
</frame>
<item id="24" />
Arch_Amazon-EC2-Auto-Scaling_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="25" />
</frame>
<item id="25" />
Arch_Amazon-EC2-Image-Builder_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="26" />
</frame>
<item id="26" />
Arch_Amazon-EC2_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="27" />
</frame>
<item id="27" />
Arch_Amazon-Elastic-VMware-Service_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="28" />
</frame>
<item id="28" />
Arch_Amazon-Lightsail-for-Research_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="29" />
</frame>
<item id="29" />
Arch_Amazon-Lightsail_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="30" />
</frame>
<item id="30" />
Arch_Bottlerocket_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="31" />
</frame>
<item id="31" />
Arch_Elastic-Fabric-Adapter_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="32" />
</frame>
<item id="32" />
Arch_NICE-EnginFrame_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="33" />
</frame>
<item id="33" />
Arch_AWS-App-Runner_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="84" />
</frame>
<item id="84" />
Arch_AWS-Batch_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="85" />
</frame>
<item id="85" />
Arch_AWS-Compute-Optimizer_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="86" />
</frame>
<item id="86" />
Arch_AWS-Elastic-Beanstalk_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="87" />
</frame>
<item id="87" />
Arch_AWS-Lambda_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="88" />
</frame>
<item id="88" />
Arch_AWS-Local-Zones_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="89" />
</frame>
<item id="89" />
Arch_AWS-Nitro-Enclaves_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="90" />
</frame>
<item id="90" />
Arch_AWS-Outposts-family_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="91" />
</frame>
<item id="91" />
Arch_AWS-Outposts-rack_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="92" />
</frame>
<item id="92" />
Arch_AWS-Outposts-servers_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="93" />
</frame>
<item id="93" />
Arch_AWS-Parallel-Cluster_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="94" />
</frame>
<item id="94" />
Arch_AWS-Parallel-Computing-Service_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="95" />
</frame>
<item id="95" />
Arch_AWS-Serverless-Application-Repository_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="96" />
</frame>
<item id="96" />
Arch_AWS-SimSpace-Weaver_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="97" />
</frame>
<item id="97" />
Arch_AWS-Wavelength_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="98" />
</frame>
<item id="98" />
Arch_Amazon-DCV_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="99" />
</frame>
<item id="99" />
Arch_Amazon-EC2-Auto-Scaling_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100" />
</frame>
<item id="100" />
Arch_Amazon-EC2-Image-Builder_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101" />
</frame>
<item id="101" />
Arch_Amazon-EC2_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102" />
</frame>
<item id="102" />
Arch_Amazon-Elastic-VMware-Service_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103" />
</frame>
<item id="103" />
Arch_Amazon-Lightsail-for-Research_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104" />
</frame>
<item id="104" />
Arch_Amazon-Lightsail_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="105" />
</frame>
<item id="105" />
Arch_Bottlerocket_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="106" />
</frame>
<item id="106" />
Arch_Elastic-Fabric-Adapter_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="107" />
</frame>
<item id="107" />
This page references SVG files under etc/resources/aws/svg/Architecture-Service-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 451-540 of 1236 SVG files.
Back to section index
Arch_NICE-EnginFrame_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="108" />
</frame>
<item id="108" />
Arch_AWS-App-Runner_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="59" />
</frame>
<item id="59" />
Arch_AWS-Batch_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="60" />
</frame>
<item id="60" />
Arch_AWS-Compute-Optimizer_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="61" />
</frame>
<item id="61" />
Arch_AWS-Elastic-Beanstalk_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="62" />
</frame>
<item id="62" />
Arch_AWS-Lambda_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="63" />
</frame>
<item id="63" />
Arch_AWS-Local-Zones_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="64" />
</frame>
<item id="64" />
Arch_AWS-Nitro-Enclaves_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="65" />
</frame>
<item id="65" />
Arch_AWS-Outposts-family_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="66" />
</frame>
<item id="66" />
Arch_AWS-Outposts-rack_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="67" />
</frame>
<item id="67" />
Arch_AWS-Outposts-servers_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="68" />
</frame>
<item id="68" />
Arch_AWS-Parallel-Cluster_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="69" />
</frame>
<item id="69" />
Arch_AWS-Parallel-Computing-Service_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="70" />
</frame>
<item id="70" />
Arch_AWS-Serverless-Application-Repository_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="71" />
</frame>
<item id="71" />
Arch_AWS-SimSpace-Weaver_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="72" />
</frame>
<item id="72" />
Arch_AWS-Wavelength_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="73" />
</frame>
<item id="73" />
Arch_Amazon-DCV_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="74" />
</frame>
<item id="74" />
Arch_Amazon-EC2-Auto-Scaling_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="75" />
</frame>
<item id="75" />
Arch_Amazon-EC2-Image-Builder_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="76" />
</frame>
<item id="76" />
Arch_Amazon-EC2_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="77" />
</frame>
<item id="77" />
Arch_Amazon-Elastic-VMware-Service_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="78" />
</frame>
<item id="78" />
Arch_Amazon-Lightsail-for-Research_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="79" />
</frame>
<item id="79" />
Arch_Amazon-Lightsail_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="80" />
</frame>
<item id="80" />
Arch_Bottlerocket_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="81" />
</frame>
<item id="81" />
Arch_Elastic-Fabric-Adapter_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="82" />
</frame>
<item id="82" />
Arch_NICE-EnginFrame_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="83" />
</frame>
<item id="83" />
Arch_AWS-Fargate_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="550" />
</frame>
<item id="550" />
Arch_Amazon-ECS-Anywhere_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="551" />
</frame>
<item id="551" />
Arch_Amazon-EKS-Anywhere_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="552" />
</frame>
<item id="552" />
Arch_Amazon-EKS-Cloud_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="553" />
</frame>
<item id="553" />
Arch_Amazon-EKS-Distro_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="554" />
</frame>
<item id="554" />
Arch_Amazon-Elastic-Container-Registry_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="555" />
</frame>
<item id="555" />
Arch_Amazon-Elastic-Container-Service_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="556" />
</frame>
<item id="556" />
Arch_Amazon-Elastic-Kubernetes-Service_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="557" />
</frame>
<item id="557" />
Arch_Red-Hat-OpenShift-Service-on-AWS_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="558" />
</frame>
<item id="558" />
Arch_AWS-Fargate_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="541" />
</frame>
<item id="541" />
Arch_Amazon-ECS-Anywhere_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="542" />
</frame>
<item id="542" />
Arch_Amazon-EKS-Anywhere_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="543" />
</frame>
<item id="543" />
Arch_Amazon-EKS-Cloud_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="544" />
</frame>
<item id="544" />
Arch_Amazon-EKS-Distro_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="545" />
</frame>
<item id="545" />
Arch_Amazon-Elastic-Container-Registry_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="546" />
</frame>
<item id="546" />
Arch_Amazon-Elastic-Container-Service_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="547" />
</frame>
<item id="547" />
Arch_Amazon-Elastic-Kubernetes-Service_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="548" />
</frame>
<item id="548" />
Arch_Red-Hat-OpenShift-Service-on-AWS_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="549" />
</frame>
<item id="549" />
Arch_AWS-Fargate_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="568" />
</frame>
<item id="568" />
Arch_Amazon-ECS-Anywhere_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="569" />
</frame>
<item id="569" />
Arch_Amazon-EKS-Anywhere_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="570" />
</frame>
<item id="570" />
Arch_Amazon-EKS-Cloud_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="571" />
</frame>
<item id="571" />
Arch_Amazon-EKS-Distro_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="572" />
</frame>
<item id="572" />
Arch_Amazon-Elastic-Container-Registry_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="573" />
</frame>
<item id="573" />
Arch_Amazon-Elastic-Container-Service_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="574" />
</frame>
<item id="574" />
Arch_Amazon-Elastic-Kubernetes-Service_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="575" />
</frame>
<item id="575" />
Arch_Red-Hat-OpenShift-Service-on-AWS_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="576" />
</frame>
<item id="576" />
Arch_AWS-Fargate_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="559" />
</frame>
<item id="559" />
Arch_Amazon-ECS-Anywhere_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="560" />
</frame>
<item id="560" />
Arch_Amazon-EKS-Anywhere_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="561" />
</frame>
<item id="561" />
Arch_Amazon-EKS-Cloud_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="562" />
</frame>
<item id="562" />
Arch_Amazon-EKS-Distro_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="563" />
</frame>
<item id="563" />
Arch_Amazon-Elastic-Container-Registry_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="564" />
</frame>
<item id="564" />
Arch_Amazon-Elastic-Container-Service_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="565" />
</frame>
<item id="565" />
Arch_Amazon-Elastic-Kubernetes-Service_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="566" />
</frame>
<item id="566" />
Arch_Red-Hat-OpenShift-Service-on-AWS_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="567" />
</frame>
<item id="567" />
Arch_AWS-Activate_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="161" />
</frame>
<item id="161" />
Arch_AWS-IQ_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="162" />
</frame>
<item id="162" />
Arch_AWS-Managed-Services_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="163" />
</frame>
<item id="163" />
Arch_AWS-Professional-Services_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="164" />
</frame>
<item id="164" />
Arch_AWS-Support_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="165" />
</frame>
<item id="165" />
Arch_AWS-Training-Certification_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="166" />
</frame>
<item id="166" />
Arch_AWS-rePost-Private_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="167" />
</frame>
<item id="167" />
Arch_AWS-rePost_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="168" />
</frame>
<item id="168" />
Arch_AWS-Activate_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="153" />
</frame>
<item id="153" />
Arch_AWS-IQ_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="154" />
</frame>
<item id="154" />
Arch_AWS-Managed-Services_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="155" />
</frame>
<item id="155" />
Arch_AWS-Professional-Services_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="156" />
</frame>
<item id="156" />
Arch_AWS-Support_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="157" />
</frame>
<item id="157" />
Arch_AWS-Training-Certification_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="158" />
</frame>
<item id="158" />
Arch_AWS-rePost-Private_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="159" />
</frame>
<item id="159" />
Arch_AWS-rePost_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="160" />
</frame>
<item id="160" />
Arch_AWS-Activate_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="177" />
</frame>
<item id="177" />
Arch_AWS-IQ_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="178" />
</frame>
<item id="178" />
Arch_AWS-Managed-Services_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="179" />
</frame>
<item id="179" />
Arch_AWS-Professional-Services_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="180" />
</frame>
<item id="180" />
Arch_AWS-Support_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="181" />
</frame>
<item id="181" />
Arch_AWS-Training-Certification_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="182" />
</frame>
<item id="182" />
Arch_AWS-rePost-Private_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="183" />
</frame>
<item id="183" />
Arch_AWS-rePost_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="184" />
</frame>
<item id="184" />
Arch_AWS-Activate_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="169" />
</frame>
<item id="169" />
Arch_AWS-IQ_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="170" />
</frame>
<item id="170" />
Arch_AWS-Managed-Services_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="171" />
</frame>
<item id="171" />
Arch_AWS-Professional-Services_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="172" />
</frame>
<item id="172" />
This page references SVG files under etc/resources/aws/svg/Architecture-Service-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 541-630 of 1236 SVG files.
Back to section index
Arch_AWS-Support_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="173" />
</frame>
<item id="173" />
Arch_AWS-Training-Certification_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="174" />
</frame>
<item id="174" />
Arch_AWS-rePost-Private_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="175" />
</frame>
<item id="175" />
Arch_AWS-rePost_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="176" />
</frame>
<item id="176" />
Arch_AWS-Database-Migration-Service_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="120" />
</frame>
<item id="120" />
Arch_Amazon-Aurora_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="121" />
</frame>
<item id="121" />
Arch_Amazon-DocumentDB_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="122" />
</frame>
<item id="122" />
Arch_Amazon-DynamoDB_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="123" />
</frame>
<item id="123" />
Arch_Amazon-ElastiCache_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="124" />
</frame>
<item id="124" />
Arch_Amazon-Keyspaces_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="125" />
</frame>
<item id="125" />
Arch_Amazon-MemoryDB_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="126" />
</frame>
<item id="126" />
Arch_Amazon-Neptune_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="127" />
</frame>
<item id="127" />
Arch_Amazon-RDS_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="128" />
</frame>
<item id="128" />
Arch_Amazon-Timestream_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="129" />
</frame>
<item id="129" />
Arch_Oracle-Database-at-AWS_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="130" />
</frame>
<item id="130" />
Arch_AWS-Database-Migration-Service_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="109" />
</frame>
<item id="109" />
Arch_Amazon-Aurora_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="110" />
</frame>
<item id="110" />
Arch_Amazon-DocumentDB_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="111" />
</frame>
<item id="111" />
Arch_Amazon-DynamoDB_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="112" />
</frame>
<item id="112" />
Arch_Amazon-ElastiCache_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="113" />
</frame>
<item id="113" />
Arch_Amazon-Keyspaces_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="114" />
</frame>
<item id="114" />
Arch_Amazon-MemoryDB_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="115" />
</frame>
<item id="115" />
Arch_Amazon-Neptune_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="116" />
</frame>
<item id="116" />
Arch_Amazon-RDS_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="117" />
</frame>
<item id="117" />
Arch_Amazon-Timestream_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="118" />
</frame>
<item id="118" />
Arch_Oracle-Database-at-AWS_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="119" />
</frame>
<item id="119" />
Arch_AWS-Database-Migration-Service_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="142" />
</frame>
<item id="142" />
Arch_Amazon-Aurora_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="143" />
</frame>
<item id="143" />
Arch_Amazon-DocumentDB_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="144" />
</frame>
<item id="144" />
Arch_Amazon-DynamoDB_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="145" />
</frame>
<item id="145" />
Arch_Amazon-ElastiCache_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="146" />
</frame>
<item id="146" />
Arch_Amazon-Keyspaces_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="147" />
</frame>
<item id="147" />
Arch_Amazon-MemoryDB_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="148" />
</frame>
<item id="148" />
Arch_Amazon-Neptune_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="149" />
</frame>
<item id="149" />
Arch_Amazon-RDS_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="150" />
</frame>
<item id="150" />
Arch_Amazon-Timestream_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="151" />
</frame>
<item id="151" />
Arch_Oracle-Database-at-AWS_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="152" />
</frame>
<item id="152" />
Arch_AWS-Database-Migration-Service_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="131" />
</frame>
<item id="131" />
Arch_Amazon-Aurora_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="132" />
</frame>
<item id="132" />
Arch_Amazon-DocumentDB_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="133" />
</frame>
<item id="133" />
Arch_Amazon-DynamoDB_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="134" />
</frame>
<item id="134" />
Arch_Amazon-ElastiCache_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="135" />
</frame>
<item id="135" />
Arch_Amazon-Keyspaces_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="136" />
</frame>
<item id="136" />
Arch_Amazon-MemoryDB_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="137" />
</frame>
<item id="137" />
Arch_Amazon-Neptune_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="138" />
</frame>
<item id="138" />
Arch_Amazon-RDS_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="139" />
</frame>
<item id="139" />
Arch_Amazon-Timestream_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="140" />
</frame>
<item id="140" />
Arch_Oracle-Database-at-AWS_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="141" />
</frame>
<item id="141" />
Arch_AWS-Cloud-Control-API_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="449" />
</frame>
<item id="449" />
Arch_AWS-Cloud-Development-Kit_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="450" />
</frame>
<item id="450" />
Arch_AWS-Cloud9_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="451" />
</frame>
<item id="451" />
Arch_AWS-CloudShell_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="452" />
</frame>
<item id="452" />
Arch_AWS-CodeArtifact_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="453" />
</frame>
<item id="453" />
Arch_AWS-CodeBuild_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="454" />
</frame>
<item id="454" />
Arch_AWS-CodeCommit_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="455" />
</frame>
<item id="455" />
Arch_AWS-CodeDeploy_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="456" />
</frame>
<item id="456" />
Arch_AWS-CodePipeline_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="457" />
</frame>
<item id="457" />
Arch_AWS-Command-Line-Interface_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="458" />
</frame>
<item id="458" />
Arch_AWS-Fault-Injection-Service_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="459" />
</frame>
<item id="459" />
Arch_AWS-Infrastructure-Composer_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="460" />
</frame>
<item id="460" />
Arch_AWS-Tools-and-SDKs_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="461" />
</frame>
<item id="461" />
Arch_AWS-X-Ray_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="462" />
</frame>
<item id="462" />
Arch_Amazon-CodeCatalyst_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="463" />
</frame>
<item id="463" />
Arch_Amazon-Corretto_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="464" />
</frame>
<item id="464" />
Arch_AWS-Cloud-Control-API_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="433" />
</frame>
<item id="433" />
Arch_AWS-Cloud-Development-Kit_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="434" />
</frame>
<item id="434" />
Arch_AWS-Cloud9_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="435" />
</frame>
<item id="435" />
Arch_AWS-CloudShell_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="436" />
</frame>
<item id="436" />
Arch_AWS-CodeArtifact_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="437" />
</frame>
<item id="437" />
Arch_AWS-CodeBuild_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="438" />
</frame>
<item id="438" />
Arch_AWS-CodeCommit_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="439" />
</frame>
<item id="439" />
Arch_AWS-CodeDeploy_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="440" />
</frame>
<item id="440" />
Arch_AWS-CodePipeline_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="441" />
</frame>
<item id="441" />
Arch_AWS-Command-Line-Interface_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="442" />
</frame>
<item id="442" />
Arch_AWS-Fault-Injection-Service_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="443" />
</frame>
<item id="443" />
Arch_AWS-Infrastructure-Composer_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="444" />
</frame>
<item id="444" />
Arch_AWS-Tools-and-SDKs_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="445" />
</frame>
<item id="445" />
Arch_AWS-X-Ray_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="446" />
</frame>
<item id="446" />
Arch_Amazon-CodeCatalyst_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="447" />
</frame>
<item id="447" />
Arch_Amazon-Corretto_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="448" />
</frame>
<item id="448" />
Arch_AWS-Cloud-Control-API_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="481" />
</frame>
<item id="481" />
Arch_AWS-Cloud-Development-Kit_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="482" />
</frame>
<item id="482" />
Arch_AWS-Cloud9_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="483" />
</frame>
<item id="483" />
Arch_AWS-CloudShell_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="484" />
</frame>
<item id="484" />
Arch_AWS-CodeArtifact_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="485" />
</frame>
<item id="485" />
Arch_AWS-CodeBuild_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="486" />
</frame>
<item id="486" />
Arch_AWS-CodeCommit_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="487" />
</frame>
<item id="487" />
Arch_AWS-CodeDeploy_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="488" />
</frame>
<item id="488" />
Arch_AWS-CodePipeline_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="489" />
</frame>
<item id="489" />
Arch_AWS-Command-Line-Interface_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="490" />
</frame>
<item id="490" />
This page references SVG files under etc/resources/aws/svg/Architecture-Service-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 631-720 of 1236 SVG files.
Back to section index
Arch_AWS-Fault-Injection-Service_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="491" />
</frame>
<item id="491" />
Arch_AWS-Infrastructure-Composer_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="492" />
</frame>
<item id="492" />
Arch_AWS-Tools-and-SDKs_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="493" />
</frame>
<item id="493" />
Arch_AWS-X-Ray_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="494" />
</frame>
<item id="494" />
Arch_Amazon-CodeCatalyst_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="495" />
</frame>
<item id="495" />
Arch_Amazon-Corretto_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="496" />
</frame>
<item id="496" />
Arch_AWS-Cloud-Control-API_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="465" />
</frame>
<item id="465" />
Arch_AWS-Cloud-Development-Kit_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="466" />
</frame>
<item id="466" />
Arch_AWS-Cloud9_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="467" />
</frame>
<item id="467" />
Arch_AWS-CloudShell_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="468" />
</frame>
<item id="468" />
Arch_AWS-CodeArtifact_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="469" />
</frame>
<item id="469" />
Arch_AWS-CodeBuild_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="470" />
</frame>
<item id="470" />
Arch_AWS-CodeCommit_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="471" />
</frame>
<item id="471" />
Arch_AWS-CodeDeploy_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="472" />
</frame>
<item id="472" />
Arch_AWS-CodePipeline_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="473" />
</frame>
<item id="473" />
Arch_AWS-Command-Line-Interface_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="474" />
</frame>
<item id="474" />
Arch_AWS-Fault-Injection-Service_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="475" />
</frame>
<item id="475" />
Arch_AWS-Infrastructure-Composer_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="476" />
</frame>
<item id="476" />
Arch_AWS-Tools-and-SDKs_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="477" />
</frame>
<item id="477" />
Arch_AWS-X-Ray_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="478" />
</frame>
<item id="478" />
Arch_Amazon-CodeCatalyst_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="479" />
</frame>
<item id="479" />
Arch_Amazon-Corretto_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="480" />
</frame>
<item id="480" />
Arch_Amazon-AppStream-2_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="3" />
</frame>
<item id="3" />
Arch_Amazon-WorkSpaces-Family_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="4" />
</frame>
<item id="4" />
Arch_Amazon-AppStream-2_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1" />
</frame>
<item id="1" />
Arch_Amazon-WorkSpaces-Family_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="2" />
</frame>
<item id="2" />
Arch_Amazon-AppStream-2_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="7" />
</frame>
<item id="7" />
Arch_Amazon-WorkSpaces-Family_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="8" />
</frame>
<item id="8" />
Arch_Amazon-AppStream-2_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="5" />
</frame>
<item id="5" />
Arch_Amazon-WorkSpaces-Family_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="6" />
</frame>
<item id="6" />
Arch_AWS-Amplify_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1072" />
</frame>
<item id="1072" />
Arch_AWS-Device-Farm_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1073" />
</frame>
<item id="1073" />
Arch_Amazon-Location-Service_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1074" />
</frame>
<item id="1074" />
Arch_AWS-Amplify_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1069" />
</frame>
<item id="1069" />
Arch_AWS-Device-Farm_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1070" />
</frame>
<item id="1070" />
Arch_Amazon-Location-Service_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1071" />
</frame>
<item id="1071" />
Arch_AWS-Amplify_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1078" />
</frame>
<item id="1078" />
Arch_AWS-Device-Farm_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1079" />
</frame>
<item id="1079" />
Arch_Amazon-Location-Service_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1080" />
</frame>
<item id="1080" />
Arch_AWS-Amplify_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1075" />
</frame>
<item id="1075" />
Arch_AWS-Device-Farm_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1076" />
</frame>
<item id="1076" />
Arch_Amazon-Location-Service_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1077" />
</frame>
<item id="1077" />
Arch_Amazon-GameLift-Servers_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="740" />
</frame>
<item id="740" />
Arch_Amazon-GameLift-Streams_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="741" />
</frame>
<item id="741" />
Arch_Open-3D-Engine_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="742" />
</frame>
<item id="742" />
Arch_Amazon-GameLift-Servers_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="737" />
</frame>
<item id="737" />
Arch_Amazon-GameLift-Streams_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="738" />
</frame>
<item id="738" />
Arch_Open-3D-Engine_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="739" />
</frame>
<item id="739" />
Arch_Amazon-GameLift-Servers_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="746" />
</frame>
<item id="746" />
Arch_Amazon-GameLift-Streams_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="747" />
</frame>
<item id="747" />
Arch_Open-3D-Engine_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="748" />
</frame>
<item id="748" />
Arch_Amazon-GameLift-Servers_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="743" />
</frame>
<item id="743" />
Arch_Amazon-GameLift-Streams_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="744" />
</frame>
<item id="744" />
Arch_Open-3D-Engine_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="745" />
</frame>
<item id="745" />
Arch_AWS-Marketplace_Dark_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="535" />
</frame>
<item id="535" />
Arch_AWS-Marketplace_Light_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="536" />
</frame>
<item id="536" />
Arch_AWS-Marketplace_Dark_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="533" />
</frame>
<item id="533" />
Arch_AWS-Marketplace_Light_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="534" />
</frame>
<item id="534" />
Arch_AWS-Marketplace_Dark_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="539" />
</frame>
<item id="539" />
Arch_AWS-Marketplace_Light_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="540" />
</frame>
<item id="540" />
Arch_AWS-Marketplace_Dark_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="537" />
</frame>
<item id="537" />
Arch_AWS-Marketplace_Light_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="538" />
</frame>
<item id="538" />
Arch_AWS-IoT-Analytics_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="397" />
</frame>
<item id="397" />
Arch_AWS-IoT-Button_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="398" />
</frame>
<item id="398" />
Arch_AWS-IoT-Core_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="399" />
</frame>
<item id="399" />
Arch_AWS-IoT-Device-Defender_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="400" />
</frame>
<item id="400" />
Arch_AWS-IoT-Device-Management_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="401" />
</frame>
<item id="401" />
Arch_AWS-IoT-Events_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="402" />
</frame>
<item id="402" />
Arch_AWS-IoT-ExpressLink_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="403" />
</frame>
<item id="403" />
Arch_AWS-IoT-FleetWise_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="404" />
</frame>
<item id="404" />
Arch_AWS-IoT-Greengrass_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="405" />
</frame>
<item id="405" />
Arch_AWS-IoT-SiteWise_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="406" />
</frame>
<item id="406" />
Arch_AWS-IoT-TwinMaker_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="407" />
</frame>
<item id="407" />
Arch_FreeRTOS_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="408" />
</frame>
<item id="408" />
Arch_AWS-IoT-Analytics_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="385" />
</frame>
<item id="385" />
Arch_AWS-IoT-Button_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="386" />
</frame>
<item id="386" />
Arch_AWS-IoT-Core_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="387" />
</frame>
<item id="387" />
Arch_AWS-IoT-Device-Defender_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="388" />
</frame>
<item id="388" />
Arch_AWS-IoT-Device-Management_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="389" />
</frame>
<item id="389" />
Arch_AWS-IoT-Events_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="390" />
</frame>
<item id="390" />
Arch_AWS-IoT-ExpressLink_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="391" />
</frame>
<item id="391" />
Arch_AWS-IoT-FleetWise_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="392" />
</frame>
<item id="392" />
Arch_AWS-IoT-Greengrass_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="393" />
</frame>
<item id="393" />
Arch_AWS-IoT-SiteWise_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="394" />
</frame>
<item id="394" />
Arch_AWS-IoT-TwinMaker_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="395" />
</frame>
<item id="395" />
Arch_FreeRTOS_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="396" />
</frame>
<item id="396" />
Arch_AWS-IoT-Analytics_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="421" />
</frame>
<item id="421" />
Arch_AWS-IoT-Button_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="422" />
</frame>
<item id="422" />
Arch_AWS-IoT-Core_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="423" />
</frame>
<item id="423" />
Arch_AWS-IoT-Device-Defender_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="424" />
</frame>
<item id="424" />
This page references SVG files under etc/resources/aws/svg/Architecture-Service-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 721-810 of 1236 SVG files.
Back to section index
Arch_AWS-IoT-Device-Management_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="425" />
</frame>
<item id="425" />
Arch_AWS-IoT-Events_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="426" />
</frame>
<item id="426" />
Arch_AWS-IoT-ExpressLink_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="427" />
</frame>
<item id="427" />
Arch_AWS-IoT-FleetWise_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="428" />
</frame>
<item id="428" />
Arch_AWS-IoT-Greengrass_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="429" />
</frame>
<item id="429" />
Arch_AWS-IoT-SiteWise_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="430" />
</frame>
<item id="430" />
Arch_AWS-IoT-TwinMaker_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="431" />
</frame>
<item id="431" />
Arch_FreeRTOS_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="432" />
</frame>
<item id="432" />
Arch_AWS-IoT-Analytics_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="409" />
</frame>
<item id="409" />
Arch_AWS-IoT-Button_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="410" />
</frame>
<item id="410" />
Arch_AWS-IoT-Core_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="411" />
</frame>
<item id="411" />
Arch_AWS-IoT-Device-Defender_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="412" />
</frame>
<item id="412" />
Arch_AWS-IoT-Device-Management_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="413" />
</frame>
<item id="413" />
Arch_AWS-IoT-Events_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="414" />
</frame>
<item id="414" />
Arch_AWS-IoT-ExpressLink_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="415" />
</frame>
<item id="415" />
Arch_AWS-IoT-FleetWise_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="416" />
</frame>
<item id="416" />
Arch_AWS-IoT-Greengrass_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="417" />
</frame>
<item id="417" />
Arch_AWS-IoT-SiteWise_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="418" />
</frame>
<item id="418" />
Arch_AWS-IoT-TwinMaker_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="419" />
</frame>
<item id="419" />
Arch_FreeRTOS_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="420" />
</frame>
<item id="420" />
Arch_AWS-AppConfig_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="607" />
</frame>
<item id="607" />
Arch_AWS-Application-Auto-Scaling_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="608" />
</frame>
<item id="608" />
Arch_AWS-Auto-Scaling_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="609" />
</frame>
<item id="609" />
Arch_AWS-Backint-Agent_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="610" />
</frame>
<item id="610" />
Arch_AWS-Chatbot_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="611" />
</frame>
<item id="611" />
Arch_AWS-CloudFormation_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="612" />
</frame>
<item id="612" />
Arch_AWS-CloudTrail_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="613" />
</frame>
<item id="613" />
Arch_AWS-Compute-Optimizer_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="614" />
</frame>
<item id="614" />
Arch_AWS-Config_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="615" />
</frame>
<item id="615" />
Arch_AWS-Console-Mobile-Application_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="616" />
</frame>
<item id="616" />
Arch_AWS-Control-Tower_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="617" />
</frame>
<item id="617" />
Arch_AWS-Distro-for-OpenTelemetry_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="618" />
</frame>
<item id="618" />
Arch_AWS-Health-Dashboard_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="619" />
</frame>
<item id="619" />
Arch_AWS-Launch-Wizard_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="620" />
</frame>
<item id="620" />
Arch_AWS-License-Manager_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="621" />
</frame>
<item id="621" />
Arch_AWS-Management-Console_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="622" />
</frame>
<item id="622" />
Arch_AWS-Organizations_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="623" />
</frame>
<item id="623" />
Arch_AWS-Proton_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="624" />
</frame>
<item id="624" />
Arch_AWS-Resilience-Hub_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="625" />
</frame>
<item id="625" />
Arch_AWS-Resource-Explorer_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="626" />
</frame>
<item id="626" />
Arch_AWS-Service-Catalog_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="627" />
</frame>
<item id="627" />
Arch_AWS-Service-Management-Connector_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="628" />
</frame>
<item id="628" />
Arch_AWS-Systems-Manager_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="629" />
</frame>
<item id="629" />
Arch_AWS-Telco-Network-Builder_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="630" />
</frame>
<item id="630" />
Arch_AWS-Trusted-Advisor_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="631" />
</frame>
<item id="631" />
Arch_AWS-User-Notifications_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="632" />
</frame>
<item id="632" />
Arch_AWS-Well-Architected-Tool_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="633" />
</frame>
<item id="633" />
Arch_Amazon-CloudWatch_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="634" />
</frame>
<item id="634" />
Arch_Amazon-Managed-Grafana_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="635" />
</frame>
<item id="635" />
Arch_Amazon-Managed-Service-for-Prometheus_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="636" />
</frame>
<item id="636" />
Arch_AWS-AppConfig_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="577" />
</frame>
<item id="577" />
Arch_AWS-Application-Auto-Scaling_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="578" />
</frame>
<item id="578" />
Arch_AWS-Auto-Scaling_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="579" />
</frame>
<item id="579" />
Arch_AWS-Backint-Agent_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="580" />
</frame>
<item id="580" />
Arch_AWS-Chatbot_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="581" />
</frame>
<item id="581" />
Arch_AWS-CloudFormation_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="582" />
</frame>
<item id="582" />
Arch_AWS-CloudTrail_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="583" />
</frame>
<item id="583" />
Arch_AWS-Compute-Optimizer_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="584" />
</frame>
<item id="584" />
Arch_AWS-Config_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="585" />
</frame>
<item id="585" />
Arch_AWS-Console-Mobile-Application_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="586" />
</frame>
<item id="586" />
Arch_AWS-Control-Tower_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="587" />
</frame>
<item id="587" />
Arch_AWS-Distro-for-OpenTelemetry_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="588" />
</frame>
<item id="588" />
Arch_AWS-Health-Dashboard_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="589" />
</frame>
<item id="589" />
Arch_AWS-Launch-Wizard_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="590" />
</frame>
<item id="590" />
Arch_AWS-License-Manager_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="591" />
</frame>
<item id="591" />
Arch_AWS-Management-Console_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="592" />
</frame>
<item id="592" />
Arch_AWS-Organizations_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="593" />
</frame>
<item id="593" />
Arch_AWS-Proton_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="594" />
</frame>
<item id="594" />
Arch_AWS-Resilience-Hub_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="595" />
</frame>
<item id="595" />
Arch_AWS-Resource-Explorer_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="596" />
</frame>
<item id="596" />
Arch_AWS-Service-Catalog_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="597" />
</frame>
<item id="597" />
Arch_AWS-Service-Management-Connector_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="598" />
</frame>
<item id="598" />
Arch_AWS-Systems-Manager_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="599" />
</frame>
<item id="599" />
Arch_AWS-Telco-Network-Builder_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="600" />
</frame>
<item id="600" />
Arch_AWS-Trusted-Advisor_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="601" />
</frame>
<item id="601" />
Arch_AWS-User-Notifications_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="602" />
</frame>
<item id="602" />
Arch_AWS-Well-Architected-Tool_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="603" />
</frame>
<item id="603" />
Arch_Amazon-CloudWatch_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="604" />
</frame>
<item id="604" />
Arch_Amazon-Managed-Grafana_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="605" />
</frame>
<item id="605" />
Arch_Amazon-Managed-Service-for-Prometheus_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="606" />
</frame>
<item id="606" />
Arch_AWS-AppConfig_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="667" />
</frame>
<item id="667" />
Arch_AWS-Application-Auto-Scaling_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="668" />
</frame>
<item id="668" />
Arch_AWS-Auto-Scaling_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="669" />
</frame>
<item id="669" />
Arch_AWS-Backint-Agent_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="670" />
</frame>
<item id="670" />
Arch_AWS-Chatbot_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="671" />
</frame>
<item id="671" />
Arch_AWS-CloudFormation_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="672" />
</frame>
<item id="672" />
Arch_AWS-CloudTrail_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="673" />
</frame>
<item id="673" />
Arch_AWS-Compute-Optimizer_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="674" />
</frame>
<item id="674" />
Arch_AWS-Config_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="675" />
</frame>
<item id="675" />
Arch_AWS-Console-Mobile-Application_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="676" />
</frame>
<item id="676" />
This page references SVG files under etc/resources/aws/svg/Architecture-Service-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 811-900 of 1236 SVG files.
Back to section index
Arch_AWS-Control-Tower_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="677" />
</frame>
<item id="677" />
Arch_AWS-Distro-for-OpenTelemetry_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="678" />
</frame>
<item id="678" />
Arch_AWS-Health-Dashboard_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="679" />
</frame>
<item id="679" />
Arch_AWS-Launch-Wizard_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="680" />
</frame>
<item id="680" />
Arch_AWS-License-Manager_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="681" />
</frame>
<item id="681" />
Arch_AWS-Management-Console_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="682" />
</frame>
<item id="682" />
Arch_AWS-Organizations_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="683" />
</frame>
<item id="683" />
Arch_AWS-Proton_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="684" />
</frame>
<item id="684" />
Arch_AWS-Resilience-Hub_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="685" />
</frame>
<item id="685" />
Arch_AWS-Resource-Explorer_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="686" />
</frame>
<item id="686" />
Arch_AWS-Service-Catalog_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="687" />
</frame>
<item id="687" />
Arch_AWS-Service-Management-Connector_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="688" />
</frame>
<item id="688" />
Arch_AWS-Systems-Manager_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="689" />
</frame>
<item id="689" />
Arch_AWS-Telco-Network-Builder_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="690" />
</frame>
<item id="690" />
Arch_AWS-Trusted-Advisor_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="691" />
</frame>
<item id="691" />
Arch_AWS-User-Notifications_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="692" />
</frame>
<item id="692" />
Arch_AWS-Well-Architected-Tool_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="693" />
</frame>
<item id="693" />
Arch_Amazon-CloudWatch_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="694" />
</frame>
<item id="694" />
Arch_Amazon-Managed-Grafana_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="695" />
</frame>
<item id="695" />
Arch_Amazon-Managed-Service-for-Prometheus_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="696" />
</frame>
<item id="696" />
Arch_AWS-AppConfig_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="637" />
</frame>
<item id="637" />
Arch_AWS-Application-Auto-Scaling_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="638" />
</frame>
<item id="638" />
Arch_AWS-Auto-Scaling_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="639" />
</frame>
<item id="639" />
Arch_AWS-Backint-Agent_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="640" />
</frame>
<item id="640" />
Arch_AWS-Chatbot_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="641" />
</frame>
<item id="641" />
Arch_AWS-CloudFormation_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="642" />
</frame>
<item id="642" />
Arch_AWS-CloudTrail_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="643" />
</frame>
<item id="643" />
Arch_AWS-Compute-Optimizer_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="644" />
</frame>
<item id="644" />
Arch_AWS-Config_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="645" />
</frame>
<item id="645" />
Arch_AWS-Console-Mobile-Application_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="646" />
</frame>
<item id="646" />
Arch_AWS-Control-Tower_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="647" />
</frame>
<item id="647" />
Arch_AWS-Distro-for-OpenTelemetry_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="648" />
</frame>
<item id="648" />
Arch_AWS-Health-Dashboard_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="649" />
</frame>
<item id="649" />
Arch_AWS-Launch-Wizard_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="650" />
</frame>
<item id="650" />
Arch_AWS-License-Manager_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="651" />
</frame>
<item id="651" />
Arch_AWS-Management-Console_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="652" />
</frame>
<item id="652" />
Arch_AWS-Organizations_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="653" />
</frame>
<item id="653" />
Arch_AWS-Proton_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="654" />
</frame>
<item id="654" />
Arch_AWS-Resilience-Hub_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="655" />
</frame>
<item id="655" />
Arch_AWS-Resource-Explorer_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="656" />
</frame>
<item id="656" />
Arch_AWS-Service-Catalog_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="657" />
</frame>
<item id="657" />
Arch_AWS-Service-Management-Connector_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="658" />
</frame>
<item id="658" />
Arch_AWS-Systems-Manager_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="659" />
</frame>
<item id="659" />
Arch_AWS-Telco-Network-Builder_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="660" />
</frame>
<item id="660" />
Arch_AWS-Trusted-Advisor_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="661" />
</frame>
<item id="661" />
Arch_AWS-User-Notifications_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="662" />
</frame>
<item id="662" />
Arch_AWS-Well-Architected-Tool_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="663" />
</frame>
<item id="663" />
Arch_Amazon-CloudWatch_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="664" />
</frame>
<item id="664" />
Arch_Amazon-Managed-Grafana_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="665" />
</frame>
<item id="665" />
Arch_Amazon-Managed-Service-for-Prometheus_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="666" />
</frame>
<item id="666" />
Arch_AWS-Deadline-Cloud_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="771" />
</frame>
<item id="771" />
Arch_AWS-Elemental-Appliances-&-Software_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="772" />
</frame>
<item id="772" />
Arch_AWS-Elemental-Conductor_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="773" />
</frame>
<item id="773" />
Arch_AWS-Elemental-Delta_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="774" />
</frame>
<item id="774" />
Arch_AWS-Elemental-Link_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="775" />
</frame>
<item id="775" />
Arch_AWS-Elemental-Live_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="776" />
</frame>
<item id="776" />
Arch_AWS-Elemental-MediaConnect_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="777" />
</frame>
<item id="777" />
Arch_AWS-Elemental-MediaConvert_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="778" />
</frame>
<item id="778" />
Arch_AWS-Elemental-MediaLive_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="779" />
</frame>
<item id="779" />
Arch_AWS-Elemental-MediaPackage_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="780" />
</frame>
<item id="780" />
Arch_AWS-Elemental-MediaStore_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="781" />
</frame>
<item id="781" />
Arch_AWS-Elemental-MediaTailor_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="782" />
</frame>
<item id="782" />
Arch_AWS-Elemental-Server_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="783" />
</frame>
<item id="783" />
Arch_AWS-Thinkbox-Deadline_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="784" />
</frame>
<item id="784" />
Arch_AWS-Thinkbox-Frost_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="785" />
</frame>
<item id="785" />
Arch_AWS-Thinkbox-Krakatoa_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="786" />
</frame>
<item id="786" />
Arch_AWS-Thinkbox-Sequoia_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="787" />
</frame>
<item id="787" />
Arch_AWS-Thinkbox-Stoke_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="788" />
</frame>
<item id="788" />
Arch_AWS-Thinkbox-XMesh_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="789" />
</frame>
<item id="789" />
Arch_Amazon-Elastic-Transcoder_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="790" />
</frame>
<item id="790" />
Arch_Amazon-Interactive-Video-Service_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="791" />
</frame>
<item id="791" />
Arch_Amazon-Kinesis-Video-Streams_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="792" />
</frame>
<item id="792" />
Arch_AWS-Deadline-Cloud_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="749" />
</frame>
<item id="749" />
Arch_AWS-Elemental-Appliances-&-Software_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="750" />
</frame>
<item id="750" />
Arch_AWS-Elemental-Conductor_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="751" />
</frame>
<item id="751" />
Arch_AWS-Elemental-Delta_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="752" />
</frame>
<item id="752" />
Arch_AWS-Elemental-Link_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="753" />
</frame>
<item id="753" />
Arch_AWS-Elemental-Live_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="754" />
</frame>
<item id="754" />
Arch_AWS-Elemental-MediaConnect_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="755" />
</frame>
<item id="755" />
Arch_AWS-Elemental-MediaConvert_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="756" />
</frame>
<item id="756" />
Arch_AWS-Elemental-MediaLive_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="757" />
</frame>
<item id="757" />
Arch_AWS-Elemental-MediaPackage_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="758" />
</frame>
<item id="758" />
Arch_AWS-Elemental-MediaStore_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="759" />
</frame>
<item id="759" />
Arch_AWS-Elemental-MediaTailor_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="760" />
</frame>
<item id="760" />
Arch_AWS-Elemental-Server_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="761" />
</frame>
<item id="761" />
Arch_AWS-Thinkbox-Deadline_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="762" />
</frame>
<item id="762" />
Arch_AWS-Thinkbox-Frost_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="763" />
</frame>
<item id="763" />
Arch_AWS-Thinkbox-Krakatoa_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="764" />
</frame>
<item id="764" />
Arch_AWS-Thinkbox-Sequoia_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="765" />
</frame>
<item id="765" />
Arch_AWS-Thinkbox-Stoke_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="766" />
</frame>
<item id="766" />
This page references SVG files under etc/resources/aws/svg/Architecture-Service-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 901-990 of 1236 SVG files.
Back to section index
Arch_AWS-Thinkbox-XMesh_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="767" />
</frame>
<item id="767" />
Arch_Amazon-Elastic-Transcoder_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="768" />
</frame>
<item id="768" />
Arch_Amazon-Interactive-Video-Service_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="769" />
</frame>
<item id="769" />
Arch_Amazon-Kinesis-Video-Streams_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="770" />
</frame>
<item id="770" />
Arch_AWS-Deadline-Cloud_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="815" />
</frame>
<item id="815" />
Arch_AWS-Elemental-Appliances-&-Software_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="816" />
</frame>
<item id="816" />
Arch_AWS-Elemental-Conductor_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="817" />
</frame>
<item id="817" />
Arch_AWS-Elemental-Delta_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="818" />
</frame>
<item id="818" />
Arch_AWS-Elemental-Link_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="819" />
</frame>
<item id="819" />
Arch_AWS-Elemental-Live_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="820" />
</frame>
<item id="820" />
Arch_AWS-Elemental-MediaConnect_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="821" />
</frame>
<item id="821" />
Arch_AWS-Elemental-MediaConvert_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="822" />
</frame>
<item id="822" />
Arch_AWS-Elemental-MediaLive_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="823" />
</frame>
<item id="823" />
Arch_AWS-Elemental-MediaPackage_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="824" />
</frame>
<item id="824" />
Arch_AWS-Elemental-MediaStore_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="825" />
</frame>
<item id="825" />
Arch_AWS-Elemental-MediaTailor_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="826" />
</frame>
<item id="826" />
Arch_AWS-Elemental-Server_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="827" />
</frame>
<item id="827" />
Arch_AWS-Thinkbox-Deadline_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="828" />
</frame>
<item id="828" />
Arch_AWS-Thinkbox-Frost_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="829" />
</frame>
<item id="829" />
Arch_AWS-Thinkbox-Krakatoa_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="830" />
</frame>
<item id="830" />
Arch_AWS-Thinkbox-Sequoia_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="831" />
</frame>
<item id="831" />
Arch_AWS-Thinkbox-Stoke_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="832" />
</frame>
<item id="832" />
Arch_AWS-Thinkbox-XMesh_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="833" />
</frame>
<item id="833" />
Arch_Amazon-Elastic-Transcoder_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="834" />
</frame>
<item id="834" />
Arch_Amazon-Interactive-Video-Service_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="835" />
</frame>
<item id="835" />
Arch_Amazon-Kinesis-Video-Streams_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="836" />
</frame>
<item id="836" />
Arch_AWS-Deadline-Cloud_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="793" />
</frame>
<item id="793" />
Arch_AWS-Elemental-Appliances-&-Software_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="794" />
</frame>
<item id="794" />
Arch_AWS-Elemental-Conductor_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="795" />
</frame>
<item id="795" />
Arch_AWS-Elemental-Delta_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="796" />
</frame>
<item id="796" />
Arch_AWS-Elemental-Link_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="797" />
</frame>
<item id="797" />
Arch_AWS-Elemental-Live_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="798" />
</frame>
<item id="798" />
Arch_AWS-Elemental-MediaConnect_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="799" />
</frame>
<item id="799" />
Arch_AWS-Elemental-MediaConvert_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="800" />
</frame>
<item id="800" />
Arch_AWS-Elemental-MediaLive_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="801" />
</frame>
<item id="801" />
Arch_AWS-Elemental-MediaPackage_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="802" />
</frame>
<item id="802" />
Arch_AWS-Elemental-MediaStore_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="803" />
</frame>
<item id="803" />
Arch_AWS-Elemental-MediaTailor_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="804" />
</frame>
<item id="804" />
Arch_AWS-Elemental-Server_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="805" />
</frame>
<item id="805" />
Arch_AWS-Thinkbox-Deadline_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="806" />
</frame>
<item id="806" />
Arch_AWS-Thinkbox-Frost_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="807" />
</frame>
<item id="807" />
Arch_AWS-Thinkbox-Krakatoa_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="808" />
</frame>
<item id="808" />
Arch_AWS-Thinkbox-Sequoia_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="809" />
</frame>
<item id="809" />
Arch_AWS-Thinkbox-Stoke_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="810" />
</frame>
<item id="810" />
Arch_AWS-Thinkbox-XMesh_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="811" />
</frame>
<item id="811" />
Arch_Amazon-Elastic-Transcoder_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="812" />
</frame>
<item id="812" />
Arch_Amazon-Interactive-Video-Service_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="813" />
</frame>
<item id="813" />
Arch_Amazon-Kinesis-Video-Streams_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="814" />
</frame>
<item id="814" />
Arch_AWS-Application-Discovery-Service_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="506" />
</frame>
<item id="506" />
Arch_AWS-Application-Migration-Service_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="507" />
</frame>
<item id="507" />
Arch_AWS-Data-Transfer-Terminal_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="508" />
</frame>
<item id="508" />
Arch_AWS-DataSync_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="509" />
</frame>
<item id="509" />
Arch_AWS-Mainframe-Modernization_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="510" />
</frame>
<item id="510" />
Arch_AWS-Migration-Evaluator_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="511" />
</frame>
<item id="511" />
Arch_AWS-Migration-Hub_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="512" />
</frame>
<item id="512" />
Arch_AWS-Transfer-Family_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="513" />
</frame>
<item id="513" />
Arch_AWS-Transform_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="514" />
</frame>
<item id="514" />
Arch_AWS-Application-Discovery-Service_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="497" />
</frame>
<item id="497" />
Arch_AWS-Application-Migration-Service_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="498" />
</frame>
<item id="498" />
Arch_AWS-Data-Transfer-Terminal_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="499" />
</frame>
<item id="499" />
Arch_AWS-DataSync_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="500" />
</frame>
<item id="500" />
Arch_AWS-Mainframe-Modernization_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="501" />
</frame>
<item id="501" />
Arch_AWS-Migration-Evaluator_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="502" />
</frame>
<item id="502" />
Arch_AWS-Migration-Hub_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="503" />
</frame>
<item id="503" />
Arch_AWS-Transfer-Family_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="504" />
</frame>
<item id="504" />
Arch_AWS-Transform_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="505" />
</frame>
<item id="505" />
Arch_AWS-Application-Discovery-Service_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="524" />
</frame>
<item id="524" />
Arch_AWS-Application-Migration-Service_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="525" />
</frame>
<item id="525" />
Arch_AWS-Data-Transfer-Terminal_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="526" />
</frame>
<item id="526" />
Arch_AWS-DataSync_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="527" />
</frame>
<item id="527" />
Arch_AWS-Mainframe-Modernization_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="528" />
</frame>
<item id="528" />
Arch_AWS-Migration-Evaluator_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="529" />
</frame>
<item id="529" />
Arch_AWS-Migration-Hub_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="530" />
</frame>
<item id="530" />
Arch_AWS-Transfer-Family_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="531" />
</frame>
<item id="531" />
Arch_AWS-Transform_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="532" />
</frame>
<item id="532" />
Arch_AWS-Application-Discovery-Service_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="515" />
</frame>
<item id="515" />
Arch_AWS-Application-Migration-Service_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="516" />
</frame>
<item id="516" />
Arch_AWS-Data-Transfer-Terminal_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="517" />
</frame>
<item id="517" />
Arch_AWS-DataSync_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="518" />
</frame>
<item id="518" />
Arch_AWS-Mainframe-Modernization_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="519" />
</frame>
<item id="519" />
Arch_AWS-Migration-Evaluator_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="520" />
</frame>
<item id="520" />
Arch_AWS-Migration-Hub_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="521" />
</frame>
<item id="521" />
Arch_AWS-Transfer-Family_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="522" />
</frame>
<item id="522" />
Arch_AWS-Transform_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="523" />
</frame>
<item id="523" />
Arch_AWS-App-Mesh_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1183" />
</frame>
<item id="1183" />
Arch_AWS-Client-VPN_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1184" />
</frame>
<item id="1184" />
Arch_AWS-Cloud-Map_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1185" />
</frame>
<item id="1185" />
Arch_AWS-Cloud-WAN_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1186" />
</frame>
<item id="1186" />
Arch_AWS-Direct-Connect_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1187" />
</frame>
<item id="1187" />
Arch_AWS-Global-Accelerator_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1188" />
</frame>
<item id="1188" />
This page references SVG files under etc/resources/aws/svg/Architecture-Service-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 991-1080 of 1236 SVG files.
Back to section index
Arch_AWS-Private-5G_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1189" />
</frame>
<item id="1189" />
Arch_AWS-PrivateLink_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1190" />
</frame>
<item id="1190" />
Arch_AWS-Site-to-Site-VPN_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1191" />
</frame>
<item id="1191" />
Arch_AWS-Transit-Gateway_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1192" />
</frame>
<item id="1192" />
Arch_AWS-Verified-Access_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1193" />
</frame>
<item id="1193" />
Arch_Amazon-API-Gateway_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1194" />
</frame>
<item id="1194" />
Arch_Amazon-Application-Recovery-Controller_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1195" />
</frame>
<item id="1195" />
Arch_Amazon-CloudFront_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1196" />
</frame>
<item id="1196" />
Arch_Amazon-Route-53_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1197" />
</frame>
<item id="1197" />
Arch_Amazon-VPC-Lattice_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1198" />
</frame>
<item id="1198" />
Arch_Amazon-Virtual-Private-Cloud_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1199" />
</frame>
<item id="1199" />
Arch_Elastic-Load-Balancing_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1200" />
</frame>
<item id="1200" />
Arch_AWS-App-Mesh_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1165" />
</frame>
<item id="1165" />
Arch_AWS-Client-VPN_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1166" />
</frame>
<item id="1166" />
Arch_AWS-Cloud-Map_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1167" />
</frame>
<item id="1167" />
Arch_AWS-Cloud-WAN_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1168" />
</frame>
<item id="1168" />
Arch_AWS-Direct-Connect_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1169" />
</frame>
<item id="1169" />
Arch_AWS-Global-Accelerator_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1170" />
</frame>
<item id="1170" />
Arch_AWS-Private-5G_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1171" />
</frame>
<item id="1171" />
Arch_AWS-PrivateLink_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1172" />
</frame>
<item id="1172" />
Arch_AWS-Site-to-Site-VPN_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1173" />
</frame>
<item id="1173" />
Arch_AWS-Transit-Gateway_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1174" />
</frame>
<item id="1174" />
Arch_AWS-Verified-Access_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1175" />
</frame>
<item id="1175" />
Arch_Amazon-API-Gateway_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1176" />
</frame>
<item id="1176" />
Arch_Amazon-Application-Recovery-Controller_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1177" />
</frame>
<item id="1177" />
Arch_Amazon-CloudFront_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1178" />
</frame>
<item id="1178" />
Arch_Amazon-Route-53_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1179" />
</frame>
<item id="1179" />
Arch_Amazon-VPC-Lattice_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1180" />
</frame>
<item id="1180" />
Arch_Amazon-Virtual-Private-Cloud_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1181" />
</frame>
<item id="1181" />
Arch_Elastic-Load-Balancing_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1182" />
</frame>
<item id="1182" />
Arch_AWS-App-Mesh_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1219" />
</frame>
<item id="1219" />
Arch_AWS-Client-VPN_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1220" />
</frame>
<item id="1220" />
Arch_AWS-Cloud-Map_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1221" />
</frame>
<item id="1221" />
Arch_AWS-Cloud-WAN_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1222" />
</frame>
<item id="1222" />
Arch_AWS-Direct-Connect_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1223" />
</frame>
<item id="1223" />
Arch_AWS-Global-Accelerator_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1224" />
</frame>
<item id="1224" />
Arch_AWS-Private-5G_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1225" />
</frame>
<item id="1225" />
Arch_AWS-PrivateLink_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1226" />
</frame>
<item id="1226" />
Arch_AWS-Site-to-Site-VPN_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1227" />
</frame>
<item id="1227" />
Arch_AWS-Transit-Gateway_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1228" />
</frame>
<item id="1228" />
Arch_AWS-Verified-Access_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1229" />
</frame>
<item id="1229" />
Arch_Amazon-API-Gateway_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1230" />
</frame>
<item id="1230" />
Arch_Amazon-Application-Recovery-Controller_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1231" />
</frame>
<item id="1231" />
Arch_Amazon-CloudFront_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1232" />
</frame>
<item id="1232" />
Arch_Amazon-Route-53_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1233" />
</frame>
<item id="1233" />
Arch_Amazon-VPC-Lattice_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1234" />
</frame>
<item id="1234" />
Arch_Amazon-Virtual-Private-Cloud_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1235" />
</frame>
<item id="1235" />
Arch_Elastic-Load-Balancing_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1236" />
</frame>
<item id="1236" />
Arch_AWS-App-Mesh_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1201" />
</frame>
<item id="1201" />
Arch_AWS-Client-VPN_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1202" />
</frame>
<item id="1202" />
Arch_AWS-Cloud-Map_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1203" />
</frame>
<item id="1203" />
Arch_AWS-Cloud-WAN_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1204" />
</frame>
<item id="1204" />
Arch_AWS-Direct-Connect_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1205" />
</frame>
<item id="1205" />
Arch_AWS-Global-Accelerator_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1206" />
</frame>
<item id="1206" />
Arch_AWS-Private-5G_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1207" />
</frame>
<item id="1207" />
Arch_AWS-PrivateLink_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1208" />
</frame>
<item id="1208" />
Arch_AWS-Site-to-Site-VPN_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1209" />
</frame>
<item id="1209" />
Arch_AWS-Transit-Gateway_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1210" />
</frame>
<item id="1210" />
Arch_AWS-Verified-Access_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1211" />
</frame>
<item id="1211" />
Arch_Amazon-API-Gateway_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1212" />
</frame>
<item id="1212" />
Arch_Amazon-Application-Recovery-Controller_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1213" />
</frame>
<item id="1213" />
Arch_Amazon-CloudFront_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1214" />
</frame>
<item id="1214" />
Arch_Amazon-Route-53_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1215" />
</frame>
<item id="1215" />
Arch_Amazon-VPC-Lattice_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1216" />
</frame>
<item id="1216" />
Arch_Amazon-Virtual-Private-Cloud_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1217" />
</frame>
<item id="1217" />
Arch_Elastic-Load-Balancing_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1218" />
</frame>
<item id="1218" />
Arch_Amazon-Braket_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="382" />
</frame>
<item id="382" />
Arch_Amazon-Braket_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="381" />
</frame>
<item id="381" />
Arch_Amazon-Braket_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="384" />
</frame>
<item id="384" />
Arch_Amazon-Braket_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="383" />
</frame>
<item id="383" />
Arch_AWS-Ground-Station_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1002" />
</frame>
<item id="1002" />
Arch_AWS-Ground-Station_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1001" />
</frame>
<item id="1001" />
Arch_AWS-Ground-Station_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1004" />
</frame>
<item id="1004" />
Arch_AWS-Ground-Station_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1003" />
</frame>
<item id="1003" />
Arch_AWS-Artifact_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="236" />
</frame>
<item id="236" />
Arch_AWS-Audit-Manager_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="237" />
</frame>
<item id="237" />
Arch_AWS-Certificate-Manager_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="238" />
</frame>
<item id="238" />
Arch_AWS-CloudHSM_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="239" />
</frame>
<item id="239" />
Arch_AWS-Directory-Service_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="240" />
</frame>
<item id="240" />
Arch_AWS-Firewall-Manager_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="241" />
</frame>
<item id="241" />
Arch_AWS-IAM-Identity-Center_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="242" />
</frame>
<item id="242" />
Arch_AWS-Identity-and-Access-Management_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="243" />
</frame>
<item id="243" />
Arch_AWS-Key-Management-Service_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="244" />
</frame>
<item id="244" />
Arch_AWS-Network-Firewall_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="245" />
</frame>
<item id="245" />
Arch_AWS-Payment-Cryptography_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="246" />
</frame>
<item id="246" />
Arch_AWS-Private-Certificate-Authority_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="247" />
</frame>
<item id="247" />
Arch_AWS-Resource-Access-Manager_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="248" />
</frame>
<item id="248" />
Arch_AWS-Secrets-Manager_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="249" />
</frame>
<item id="249" />
Arch_AWS-Security-Hub_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="250" />
</frame>
<item id="250" />
Arch_AWS-Security-Incident-Response_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="251" />
</frame>
<item id="251" />
This page references SVG files under etc/resources/aws/svg/Architecture-Service-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 1081-1170 of 1236 SVG files.
Back to section index
Arch_AWS-Shield_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="252" />
</frame>
<item id="252" />
Arch_AWS-Signer_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="253" />
</frame>
<item id="253" />
Arch_AWS-WAF_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="254" />
</frame>
<item id="254" />
Arch_Amazon-Cloud-Directory_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="255" />
</frame>
<item id="255" />
Arch_Amazon-Cognito_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="256" />
</frame>
<item id="256" />
Arch_Amazon-Detective_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="257" />
</frame>
<item id="257" />
Arch_Amazon-GuardDuty_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="258" />
</frame>
<item id="258" />
Arch_Amazon-Inspector_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="259" />
</frame>
<item id="259" />
Arch_Amazon-Macie_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="260" />
</frame>
<item id="260" />
Arch_Amazon-Security-Lake_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="261" />
</frame>
<item id="261" />
Arch_Amazon-Verified-Permissions_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="262" />
</frame>
<item id="262" />
Arch_AWS-Artifact_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="209" />
</frame>
<item id="209" />
Arch_AWS-Audit-Manager_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="210" />
</frame>
<item id="210" />
Arch_AWS-Certificate-Manager_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="211" />
</frame>
<item id="211" />
Arch_AWS-CloudHSM_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="212" />
</frame>
<item id="212" />
Arch_AWS-Directory-Service_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="213" />
</frame>
<item id="213" />
Arch_AWS-Firewall-Manager_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="214" />
</frame>
<item id="214" />
Arch_AWS-IAM-Identity-Center_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="215" />
</frame>
<item id="215" />
Arch_AWS-Identity-and-Access-Management_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="216" />
</frame>
<item id="216" />
Arch_AWS-Key-Management-Service_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="217" />
</frame>
<item id="217" />
Arch_AWS-Network-Firewall_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="218" />
</frame>
<item id="218" />
Arch_AWS-Payment-Cryptography_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="219" />
</frame>
<item id="219" />
Arch_AWS-Private-Certificate-Authority_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="220" />
</frame>
<item id="220" />
Arch_AWS-Resource-Access-Manager_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="221" />
</frame>
<item id="221" />
Arch_AWS-Secrets-Manager_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="222" />
</frame>
<item id="222" />
Arch_AWS-Security-Hub_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="223" />
</frame>
<item id="223" />
Arch_AWS-Security-Incident-Response_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="224" />
</frame>
<item id="224" />
Arch_AWS-Shield_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="225" />
</frame>
<item id="225" />
Arch_AWS-Signer_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="226" />
</frame>
<item id="226" />
Arch_AWS-WAF_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="227" />
</frame>
<item id="227" />
Arch_Amazon-Cloud-Directory_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="228" />
</frame>
<item id="228" />
Arch_Amazon-Cognito_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="229" />
</frame>
<item id="229" />
Arch_Amazon-Detective_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="230" />
</frame>
<item id="230" />
Arch_Amazon-GuardDuty_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="231" />
</frame>
<item id="231" />
Arch_Amazon-Inspector_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="232" />
</frame>
<item id="232" />
Arch_Amazon-Macie_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="233" />
</frame>
<item id="233" />
Arch_Amazon-Security-Lake_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="234" />
</frame>
<item id="234" />
Arch_Amazon-Verified-Permissions_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="235" />
</frame>
<item id="235" />
Arch_AWS-Artifact_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="290" />
</frame>
<item id="290" />
Arch_AWS-Audit-Manager_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="291" />
</frame>
<item id="291" />
Arch_AWS-Certificate-Manager_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="292" />
</frame>
<item id="292" />
Arch_AWS-CloudHSM_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="293" />
</frame>
<item id="293" />
Arch_AWS-Directory-Service_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="294" />
</frame>
<item id="294" />
Arch_AWS-Firewall-Manager_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="295" />
</frame>
<item id="295" />
Arch_AWS-IAM-Identity-Center_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="296" />
</frame>
<item id="296" />
Arch_AWS-Identity-and-Access-Management_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="297" />
</frame>
<item id="297" />
Arch_AWS-Key-Management-Service_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="298" />
</frame>
<item id="298" />
Arch_AWS-Network-Firewall_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="299" />
</frame>
<item id="299" />
Arch_AWS-Payment-Cryptography_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="300" />
</frame>
<item id="300" />
Arch_AWS-Private-Certificate-Authority_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="301" />
</frame>
<item id="301" />
Arch_AWS-Resource-Access-Manager_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="302" />
</frame>
<item id="302" />
Arch_AWS-Secrets-Manager_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="303" />
</frame>
<item id="303" />
Arch_AWS-Security-Hub_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="304" />
</frame>
<item id="304" />
Arch_AWS-Security-Incident-Response_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="305" />
</frame>
<item id="305" />
Arch_AWS-Shield_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="306" />
</frame>
<item id="306" />
Arch_AWS-Signer_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="307" />
</frame>
<item id="307" />
Arch_AWS-WAF_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="308" />
</frame>
<item id="308" />
Arch_Amazon-Cloud-Directory_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="309" />
</frame>
<item id="309" />
Arch_Amazon-Cognito_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="310" />
</frame>
<item id="310" />
Arch_Amazon-Detective_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="311" />
</frame>
<item id="311" />
Arch_Amazon-GuardDuty_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="312" />
</frame>
<item id="312" />
Arch_Amazon-Inspector_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="313" />
</frame>
<item id="313" />
Arch_Amazon-Macie_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="314" />
</frame>
<item id="314" />
Arch_Amazon-Security-Lake_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="315" />
</frame>
<item id="315" />
Arch_Amazon-Verified-Permissions_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="316" />
</frame>
<item id="316" />
Arch_AWS-Artifact_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="263" />
</frame>
<item id="263" />
Arch_AWS-Audit-Manager_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="264" />
</frame>
<item id="264" />
Arch_AWS-Certificate-Manager_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="265" />
</frame>
<item id="265" />
Arch_AWS-CloudHSM_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="266" />
</frame>
<item id="266" />
Arch_AWS-Directory-Service_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="267" />
</frame>
<item id="267" />
Arch_AWS-Firewall-Manager_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="268" />
</frame>
<item id="268" />
Arch_AWS-IAM-Identity-Center_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="269" />
</frame>
<item id="269" />
Arch_AWS-Identity-and-Access-Management_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="270" />
</frame>
<item id="270" />
Arch_AWS-Key-Management-Service_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="271" />
</frame>
<item id="271" />
Arch_AWS-Network-Firewall_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="272" />
</frame>
<item id="272" />
Arch_AWS-Payment-Cryptography_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="273" />
</frame>
<item id="273" />
Arch_AWS-Private-Certificate-Authority_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="274" />
</frame>
<item id="274" />
Arch_AWS-Resource-Access-Manager_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="275" />
</frame>
<item id="275" />
Arch_AWS-Secrets-Manager_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="276" />
</frame>
<item id="276" />
Arch_AWS-Security-Hub_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="277" />
</frame>
<item id="277" />
Arch_AWS-Security-Incident-Response_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="278" />
</frame>
<item id="278" />
Arch_AWS-Shield_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="279" />
</frame>
<item id="279" />
Arch_AWS-Signer_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="280" />
</frame>
<item id="280" />
Arch_AWS-WAF_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="281" />
</frame>
<item id="281" />
Arch_Amazon-Cloud-Directory_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="282" />
</frame>
<item id="282" />
Arch_Amazon-Cognito_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="283" />
</frame>
<item id="283" />
Arch_Amazon-Detective_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="284" />
</frame>
<item id="284" />
Arch_Amazon-GuardDuty_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="285" />
</frame>
<item id="285" />
Arch_Amazon-Inspector_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="286" />
</frame>
<item id="286" />
Arch_Amazon-Macie_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="287" />
</frame>
<item id="287" />
This page references SVG files under etc/resources/aws/svg/Architecture-Service-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 1171-1236 of 1236 SVG files.
Back to section index
Arch_Amazon-Security-Lake_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="288" />
</frame>
<item id="288" />
Arch_Amazon-Verified-Permissions_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="289" />
</frame>
<item id="289" />
Arch_AWS-Backup_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1021" />
</frame>
<item id="1021" />
Arch_AWS-Elastic-Disaster-Recovery_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1022" />
</frame>
<item id="1022" />
Arch_AWS-Snowball-Edge_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1023" />
</frame>
<item id="1023" />
Arch_AWS-Snowball_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1024" />
</frame>
<item id="1024" />
Arch_AWS-Storage-Gateway_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1025" />
</frame>
<item id="1025" />
Arch_Amazon-EFS_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1026" />
</frame>
<item id="1026" />
Arch_Amazon-Elastic-Block-Store_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1027" />
</frame>
<item id="1027" />
Arch_Amazon-FSx-for-Lustre_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1028" />
</frame>
<item id="1028" />
Arch_Amazon-FSx-for-NetApp-ONTAP_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1029" />
</frame>
<item id="1029" />
Arch_Amazon-FSx-for-OpenZFS_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1030" />
</frame>
<item id="1030" />
Arch_Amazon-FSx-for-WFS_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1031" />
</frame>
<item id="1031" />
Arch_Amazon-FSx_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1032" />
</frame>
<item id="1032" />
Arch_Amazon-File-Cache_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1033" />
</frame>
<item id="1033" />
Arch_Amazon-S3-on-Outposts_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1034" />
</frame>
<item id="1034" />
Arch_Amazon-Simple-Storage-Service-Glacier_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1035" />
</frame>
<item id="1035" />
Arch_Amazon-Simple-Storage-Service_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1036" />
</frame>
<item id="1036" />
Arch_AWS-Backup_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1005" />
</frame>
<item id="1005" />
Arch_AWS-Elastic-Disaster-Recovery_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1006" />
</frame>
<item id="1006" />
Arch_AWS-Snowball-Edge_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1007" />
</frame>
<item id="1007" />
Arch_AWS-Snowball_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1008" />
</frame>
<item id="1008" />
Arch_AWS-Storage-Gateway_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1009" />
</frame>
<item id="1009" />
Arch_Amazon-EFS_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1010" />
</frame>
<item id="1010" />
Arch_Amazon-Elastic-Block-Store_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1011" />
</frame>
<item id="1011" />
Arch_Amazon-FSx-for-Lustre_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1012" />
</frame>
<item id="1012" />
Arch_Amazon-FSx-for-NetApp-ONTAP_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1013" />
</frame>
<item id="1013" />
Arch_Amazon-FSx-for-OpenZFS_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1014" />
</frame>
<item id="1014" />
Arch_Amazon-FSx-for-WFS_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1015" />
</frame>
<item id="1015" />
Arch_Amazon-FSx_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1016" />
</frame>
<item id="1016" />
Arch_Amazon-File-Cache_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1017" />
</frame>
<item id="1017" />
Arch_Amazon-S3-on-Outposts_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1018" />
</frame>
<item id="1018" />
Arch_Amazon-Simple-Storage-Service-Glacier_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1019" />
</frame>
<item id="1019" />
Arch_Amazon-Simple-Storage-Service_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1020" />
</frame>
<item id="1020" />
Arch_AWS-Backup_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1053" />
</frame>
<item id="1053" />
Arch_AWS-Elastic-Disaster-Recovery_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1054" />
</frame>
<item id="1054" />
Arch_AWS-Snowball-Edge_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1055" />
</frame>
<item id="1055" />
Arch_AWS-Snowball_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1056" />
</frame>
<item id="1056" />
Arch_AWS-Storage-Gateway_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1057" />
</frame>
<item id="1057" />
Arch_Amazon-EFS_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1058" />
</frame>
<item id="1058" />
Arch_Amazon-Elastic-Block-Store_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1059" />
</frame>
<item id="1059" />
Arch_Amazon-FSx-for-Lustre_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1060" />
</frame>
<item id="1060" />
Arch_Amazon-FSx-for-NetApp-ONTAP_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1061" />
</frame>
<item id="1061" />
Arch_Amazon-FSx-for-OpenZFS_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1062" />
</frame>
<item id="1062" />
Arch_Amazon-FSx-for-WFS_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1063" />
</frame>
<item id="1063" />
Arch_Amazon-FSx_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1064" />
</frame>
<item id="1064" />
Arch_Amazon-File-Cache_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1065" />
</frame>
<item id="1065" />
Arch_Amazon-S3-on-Outposts_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1066" />
</frame>
<item id="1066" />
Arch_Amazon-Simple-Storage-Service-Glacier_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1067" />
</frame>
<item id="1067" />
Arch_Amazon-Simple-Storage-Service_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1068" />
</frame>
<item id="1068" />
Arch_AWS-Backup_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1037" />
</frame>
<item id="1037" />
Arch_AWS-Elastic-Disaster-Recovery_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1038" />
</frame>
<item id="1038" />
Arch_AWS-Snowball-Edge_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1039" />
</frame>
<item id="1039" />
Arch_AWS-Snowball_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1040" />
</frame>
<item id="1040" />
Arch_AWS-Storage-Gateway_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1041" />
</frame>
<item id="1041" />
Arch_Amazon-EFS_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1042" />
</frame>
<item id="1042" />
Arch_Amazon-Elastic-Block-Store_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1043" />
</frame>
<item id="1043" />
Arch_Amazon-FSx-for-Lustre_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1044" />
</frame>
<item id="1044" />
Arch_Amazon-FSx-for-NetApp-ONTAP_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1045" />
</frame>
<item id="1045" />
Arch_Amazon-FSx-for-OpenZFS_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1046" />
</frame>
<item id="1046" />
Arch_Amazon-FSx-for-WFS_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1047" />
</frame>
<item id="1047" />
Arch_Amazon-FSx_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1048" />
</frame>
<item id="1048" />
Arch_Amazon-File-Cache_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1049" />
</frame>
<item id="1049" />
Arch_Amazon-S3-on-Outposts_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1050" />
</frame>
<item id="1050" />
Arch_Amazon-Simple-Storage-Service-Glacier_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1051" />
</frame>
<item id="1051" />
Arch_Amazon-Simple-Storage-Service_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1052" />
</frame>
<item id="1052" />
This section contains 100 SVG files from etc/resources/aws/svg/Category-Icons.
Open a page below to load a smaller set of previews.
This page references SVG files under etc/resources/aws/svg/Category-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 1-90 of 100 SVG files.
Back to section index
Arch-Category_Analytics_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1262" />
</frame>
<item id="1262" />
Arch-Category_Application-Integration_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1263" />
</frame>
<item id="1263" />
Arch-Category_Artificial-Intelligence_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1264" />
</frame>
<item id="1264" />
Arch-Category_Blockchain_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1265" />
</frame>
<item id="1265" />
Arch-Category_Business-Applications_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1266" />
</frame>
<item id="1266" />
Arch-Category_Cloud-Financial-Management_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1267" />
</frame>
<item id="1267" />
Arch-Category_Compute_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1268" />
</frame>
<item id="1268" />
Arch-Category_Contact-Center_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1269" />
</frame>
<item id="1269" />
Arch-Category_Containers_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1270" />
</frame>
<item id="1270" />
Arch-Category_Customer-Enablement_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1271" />
</frame>
<item id="1271" />
Arch-Category_Database_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1272" />
</frame>
<item id="1272" />
Arch-Category_Developer-Tools_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1273" />
</frame>
<item id="1273" />
Arch-Category_End-User-Computing_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1274" />
</frame>
<item id="1274" />
Arch-Category_Front-End-Web-Mobile_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1275" />
</frame>
<item id="1275" />
Arch-Category_Games_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1276" />
</frame>
<item id="1276" />
Arch-Category_Internet-of-Things_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1277" />
</frame>
<item id="1277" />
Arch-Category_Management-Governance_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1278" />
</frame>
<item id="1278" />
Arch-Category_Media-Services_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1279" />
</frame>
<item id="1279" />
Arch-Category_Migration-Modernization_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1280" />
</frame>
<item id="1280" />
Arch-Category_Networking-Content-Delivery_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1281" />
</frame>
<item id="1281" />
Arch-Category_Quantum-Technologies_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1282" />
</frame>
<item id="1282" />
Arch-Category_Satellite_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1283" />
</frame>
<item id="1283" />
Arch-Category_Security-Identity-Compliance_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1284" />
</frame>
<item id="1284" />
Arch-Category_Serverless_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1285" />
</frame>
<item id="1285" />
Arch-Category_Storage_16
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1286" />
</frame>
<item id="1286" />
Arch-Category_Analytics_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1237" />
</frame>
<item id="1237" />
Arch-Category_Application-Integration_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1238" />
</frame>
<item id="1238" />
Arch-Category_Artificial-Intelligence_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1239" />
</frame>
<item id="1239" />
Arch-Category_Blockchain_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1240" />
</frame>
<item id="1240" />
Arch-Category_Business-Applications_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1241" />
</frame>
<item id="1241" />
Arch-Category_Cloud-Financial-Management_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1242" />
</frame>
<item id="1242" />
Arch-Category_Compute_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1243" />
</frame>
<item id="1243" />
Arch-Category_Contact-Center_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1244" />
</frame>
<item id="1244" />
Arch-Category_Containers_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1245" />
</frame>
<item id="1245" />
Arch-Category_Customer-Enablement_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1246" />
</frame>
<item id="1246" />
Arch-Category_Database_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1247" />
</frame>
<item id="1247" />
Arch-Category_Developer-Tools_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1248" />
</frame>
<item id="1248" />
Arch-Category_End-User-Computing_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1249" />
</frame>
<item id="1249" />
Arch-Category_Front-End-Web-Mobile_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1250" />
</frame>
<item id="1250" />
Arch-Category_Games_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1251" />
</frame>
<item id="1251" />
Arch-Category_Internet-of-Things_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1252" />
</frame>
<item id="1252" />
Arch-Category_Management-Governance_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1253" />
</frame>
<item id="1253" />
Arch-Category_Media-Services_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1254" />
</frame>
<item id="1254" />
Arch-Category_Migration-Modernization_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1255" />
</frame>
<item id="1255" />
Arch-Category_Networking-Content-Delivery_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1256" />
</frame>
<item id="1256" />
Arch-Category_Quantum-Technologies_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1257" />
</frame>
<item id="1257" />
Arch-Category_Satellite_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1258" />
</frame>
<item id="1258" />
Arch-Category_Security-Identity-Compliance_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1259" />
</frame>
<item id="1259" />
Arch-Category_Serverless_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1260" />
</frame>
<item id="1260" />
Arch-Category_Storage_32
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1261" />
</frame>
<item id="1261" />
Arch-Category_Analytics_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1312" />
</frame>
<item id="1312" />
Arch-Category_Application-Integration_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1313" />
</frame>
<item id="1313" />
Arch-Category_Artificial-Intelligence_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1314" />
</frame>
<item id="1314" />
Arch-Category_Blockchain_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1315" />
</frame>
<item id="1315" />
Arch-Category_Business-Applications_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1316" />
</frame>
<item id="1316" />
Arch-Category_Cloud-Financial-Management_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1317" />
</frame>
<item id="1317" />
Arch-Category_Compute_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1318" />
</frame>
<item id="1318" />
Arch-Category_Contact-Center_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1319" />
</frame>
<item id="1319" />
Arch-Category_Containers_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1320" />
</frame>
<item id="1320" />
Arch-Category_Customer-Enablement_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1321" />
</frame>
<item id="1321" />
Arch-Category_Database_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1322" />
</frame>
<item id="1322" />
Arch-Category_Developer-Tools_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1323" />
</frame>
<item id="1323" />
Arch-Category_End-User-Computing_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1324" />
</frame>
<item id="1324" />
Arch-Category_Front-End-Web-Mobile_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1325" />
</frame>
<item id="1325" />
Arch-Category_Games_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1326" />
</frame>
<item id="1326" />
Arch-Category_Internet-of-Things_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1327" />
</frame>
<item id="1327" />
Arch-Category_Management-Governance_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1328" />
</frame>
<item id="1328" />
Arch-Category_Media-Services_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1329" />
</frame>
<item id="1329" />
Arch-Category_Migration-Modernization_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1330" />
</frame>
<item id="1330" />
Arch-Category_Networking-Content-Delivery_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1331" />
</frame>
<item id="1331" />
Arch-Category_Quantum-Technologies_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1332" />
</frame>
<item id="1332" />
Arch-Category_Satellite_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1333" />
</frame>
<item id="1333" />
Arch-Category_Security-Identity-Compliance_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1334" />
</frame>
<item id="1334" />
Arch-Category_Serverless_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1335" />
</frame>
<item id="1335" />
Arch-Category_Storage_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1336" />
</frame>
<item id="1336" />
Arch-Category_Analytics_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1287" />
</frame>
<item id="1287" />
Arch-Category_Application-Integration_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1288" />
</frame>
<item id="1288" />
Arch-Category_Artificial-Intelligence_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1289" />
</frame>
<item id="1289" />
Arch-Category_Blockchain_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1290" />
</frame>
<item id="1290" />
Arch-Category_Business-Applications_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1291" />
</frame>
<item id="1291" />
Arch-Category_Cloud-Financial-Management_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1292" />
</frame>
<item id="1292" />
Arch-Category_Compute_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1293" />
</frame>
<item id="1293" />
Arch-Category_Contact-Center_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1294" />
</frame>
<item id="1294" />
Arch-Category_Containers_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1295" />
</frame>
<item id="1295" />
Arch-Category_Customer-Enablement_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1296" />
</frame>
<item id="1296" />
Arch-Category_Database_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1297" />
</frame>
<item id="1297" />
Arch-Category_Developer-Tools_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1298" />
</frame>
<item id="1298" />
Arch-Category_End-User-Computing_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1299" />
</frame>
<item id="1299" />
Arch-Category_Front-End-Web-Mobile_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1300" />
</frame>
<item id="1300" />
Arch-Category_Games_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1301" />
</frame>
<item id="1301" />
This page references SVG files under etc/resources/aws/svg/Category-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 91-100 of 100 SVG files.
Back to section index
Arch-Category_Internet-of-Things_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1302" />
</frame>
<item id="1302" />
Arch-Category_Management-Governance_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1303" />
</frame>
<item id="1303" />
Arch-Category_Media-Services_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1304" />
</frame>
<item id="1304" />
Arch-Category_Migration-Modernization_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1305" />
</frame>
<item id="1305" />
Arch-Category_Networking-Content-Delivery_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1306" />
</frame>
<item id="1306" />
Arch-Category_Quantum-Technologies_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1307" />
</frame>
<item id="1307" />
Arch-Category_Satellite_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1308" />
</frame>
<item id="1308" />
Arch-Category_Security-Identity-Compliance_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1309" />
</frame>
<item id="1309" />
Arch-Category_Serverless_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1310" />
</frame>
<item id="1310" />
Arch-Category_Storage_64
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1311" />
</frame>
<item id="1311" />
This page references SVG files under etc/resources/aws/svg/Isoflow-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 1-50 of 50 SVG files.
isoflow-1020-amazon-simple-storage-service
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1020" />
</frame>
<item id="1020" />
isoflow-110-amazon-aurora
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="110" />
</frame>
<item id="110" />
isoflow-112-amazon-dynamodb
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="112" />
</frame>
<item id="112" />
isoflow-113-amazon-elasticache
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="113" />
</frame>
<item id="113" />
isoflow-117-amazon-rds
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="117" />
</frame>
<item id="117" />
isoflow-1178-amazon-cloudfront
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1178" />
</frame>
<item id="1178" />
isoflow-1179-amazon-route-53
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1179" />
</frame>
<item id="1179" />
isoflow-1182-elastic-load-balancing
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1182" />
</frame>
<item id="1182" />
isoflow-13-aws-lambda
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="13" />
</frame>
<item id="13" />
isoflow-1479-aws-identity-access-management-role
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1479" />
</frame>
<item id="1479" />
isoflow-1495-amazon-eventbridge-custom-event-bus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1495" />
</frame>
<item id="1495" />
isoflow-1498-amazon-eventbridge-rule
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1498" />
</frame>
<item id="1498" />
isoflow-1506-amazon-simple-notification-service-topic
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1506" />
</frame>
<item id="1506" />
isoflow-1508-amazon-simple-queue-service-queue
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1508" />
</frame>
<item id="1508" />
isoflow-1509-aws-cloudformation-change-set
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1509" />
</frame>
<item id="1509" />
isoflow-1539-amazon-cloudwatch-alarm
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1539" />
</frame>
<item id="1539" />
isoflow-1545-amazon-cloudwatch-logs
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1545" />
</frame>
<item id="1545" />
isoflow-1564-amazon-cloudfront-download-distribution
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1564" />
</frame>
<item id="1564" />
isoflow-1568-amazon-route-53-hosted-zone
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1568" />
</frame>
<item id="1568" />
isoflow-1579-amazon-vpc-endpoints
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1579" />
</frame>
<item id="1579" />
isoflow-1580-amazon-vpc-flow-logs
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1580" />
</frame>
<item id="1580" />
isoflow-1581-amazon-vpc-internet-gateway
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1581" />
</frame>
<item id="1581" />
isoflow-1582-amazon-vpc-nat-gateway
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1582" />
</frame>
<item id="1582" />
isoflow-1628-amazon-elastic-block-store-volume
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1628" />
</frame>
<item id="1628" />
isoflow-1642-amazon-simple-storage-service-bucket
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1642" />
</frame>
<item id="1642" />
isoflow-1677-amazon-elastic-container-registry-image
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1677" />
</frame>
<item id="1677" />
isoflow-1683-amazon-elastic-container-service-ecs-service-connect
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1683" />
</frame>
<item id="1683" />
isoflow-1684-amazon-elastic-container-service-service
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1684" />
</frame>
<item id="1684" />
isoflow-1685-amazon-elastic-container-service-task
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1685" />
</frame>
<item id="1685" />
isoflow-1783-aws-lambda-lambda-function
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1783" />
</frame>
<item id="1783" />
isoflow-1790-amazon-ec2-instance
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1790" />
</frame>
<item id="1790" />
isoflow-1791-amazon-ec2-instances
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1791" />
</frame>
<item id="1791" />
isoflow-1795-amazon-aurora-instance
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1795" />
</frame>
<item id="1795" />
isoflow-1820-amazon-dynamodb-stream
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1820" />
</frame>
<item id="1820" />
isoflow-1821-amazon-dynamodb-table
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1821" />
</frame>
<item id="1821" />
isoflow-1827-amazon-rds-proxy-instance
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1827" />
</frame>
<item id="1827" />
isoflow-1830-amazon-rds-multi-az
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1830" />
</frame>
<item id="1830" />
isoflow-216-aws-identity-and-access-management
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="216" />
</frame>
<item id="216" />
isoflow-222-aws-secrets-manager
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="222" />
</frame>
<item id="222" />
isoflow-227-aws-waf
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="227" />
</frame>
<item id="227" />
isoflow-27-amazon-ec2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="27" />
</frame>
<item id="27" />
isoflow-314-amazon-macie
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="314" />
</frame>
<item id="314" />
isoflow-441-aws-codepipeline
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="441" />
</frame>
<item id="441" />
isoflow-547-amazon-elastic-container-service
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="547" />
</frame>
<item id="547" />
isoflow-548-amazon-elastic-kubernetes-service
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="548" />
</frame>
<item id="548" />
isoflow-604-amazon-cloudwatch
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="604" />
</frame>
<item id="604" />
isoflow-705-amazon-simple-notification-service
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="705" />
</frame>
<item id="705" />
isoflow-706-amazon-simple-queue-service
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="706" />
</frame>
<item id="706" />
isoflow-720-aws-step-functions
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="720" />
</frame>
<item id="720" />
isoflow-722-amazon-eventbridge
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="722" />
</frame>
<item id="722" />
This section contains 524 SVG files from etc/resources/aws/svg/Resource-Icons.
Open a page below to load a smaller set of previews.
This page references SVG files under etc/resources/aws/svg/Resource-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 1-90 of 524 SVG files.
Back to section index
Res_AWS-Data-Exchange-for-APIs_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1430" />
</frame>
<item id="1430" />
Res_AWS-Glue_AWS-Glue-for-Ray_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1431" />
</frame>
<item id="1431" />
Res_AWS-Glue_Crawler_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1432" />
</frame>
<item id="1432" />
Res_AWS-Glue_Data-Catalog_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1433" />
</frame>
<item id="1433" />
Res_AWS-Glue_Data-Quality_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1434" />
</frame>
<item id="1434" />
Res_AWS-Lake-Formation_Data-Lake_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1435" />
</frame>
<item id="1435" />
Res_Amazon-Athena_Data-Source-Connectors_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1436" />
</frame>
<item id="1436" />
Res_Amazon-CloudSearch_Search-Documents_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1437" />
</frame>
<item id="1437" />
Res_Amazon-DataZone_Business-Data-Catalog_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1438" />
</frame>
<item id="1438" />
Res_Amazon-DataZone_Data-Portal_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1439" />
</frame>
<item id="1439" />
Res_Amazon-DataZone_Data-Projects_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1440" />
</frame>
<item id="1440" />
Res_Amazon-EMR_Cluster_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1441" />
</frame>
<item id="1441" />
Res_Amazon-EMR_EMR-Engine_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1442" />
</frame>
<item id="1442" />
Res_Amazon-EMR_HDFS-Cluster_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1443" />
</frame>
<item id="1443" />
Res_Amazon-MSK_Amazon-MSK-Connect_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1444" />
</frame>
<item id="1444" />
Res_Amazon-OpenSearch-Service_Cluster-Administrator-Node_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1445" />
</frame>
<item id="1445" />
Res_Amazon-OpenSearch-Service_Data-Node_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1446" />
</frame>
<item id="1446" />
Res_Amazon-OpenSearch-Service_Index_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1447" />
</frame>
<item id="1447" />
Res_Amazon-OpenSearch-Service_Observability_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1448" />
</frame>
<item id="1448" />
Res_Amazon-OpenSearch-Service_OpenSearch-Dashboards_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1449" />
</frame>
<item id="1449" />
Res_Amazon-OpenSearch-Service_OpenSearch-Ingestion_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1450" />
</frame>
<item id="1450" />
Res_Amazon-OpenSearch-Service_Traces_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1451" />
</frame>
<item id="1451" />
Res_Amazon-OpenSearch-Service_UltraWarm-Node_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1452" />
</frame>
<item id="1452" />
Res_Amazon-Quicksight_Paginated-Reports_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1453" />
</frame>
<item id="1453" />
Res_Amazon-Redshift_Auto-copy_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1454" />
</frame>
<item id="1454" />
Res_Amazon-Redshift_Data-Sharing-Governance_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1455" />
</frame>
<item id="1455" />
Res_Amazon-Redshift_Dense-Compute-Node_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1456" />
</frame>
<item id="1456" />
Res_Amazon-Redshift_Dense-Storage-Node_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1457" />
</frame>
<item id="1457" />
Res_Amazon-Redshift_ML_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1458" />
</frame>
<item id="1458" />
Res_Amazon-Redshift_Query-Editor-v2.0_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1459" />
</frame>
<item id="1459" />
Res_Amazon-Redshift_RA3_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1460" />
</frame>
<item id="1460" />
Res_Amazon-Redshift_Streaming-Ingestion_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1461" />
</frame>
<item id="1461" />
Res_Amazon-EventBridge-Event_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1494" />
</frame>
<item id="1494" />
Res_Amazon-EventBridge_Custom-Event-Bus_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1495" />
</frame>
<item id="1495" />
Res_Amazon-EventBridge_Default-Event-Bus_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1496" />
</frame>
<item id="1496" />
Res_Amazon-EventBridge_Pipes_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1497" />
</frame>
<item id="1497" />
Res_Amazon-EventBridge_Rule_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1498" />
</frame>
<item id="1498" />
Res_Amazon-EventBridge_Saas-Partner-Event_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1499" />
</frame>
<item id="1499" />
Res_Amazon-EventBridge_Scheduler_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1500" />
</frame>
<item id="1500" />
Res_Amazon-EventBridge_Schema-Registry_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1501" />
</frame>
<item id="1501" />
Res_Amazon-EventBridge_Schema_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1502" />
</frame>
<item id="1502" />
Res_Amazon-MQ_Broker_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1503" />
</frame>
<item id="1503" />
Res_Amazon-Simple-Notification-Service_Email-Notification_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1504" />
</frame>
<item id="1504" />
Res_Amazon-Simple-Notification-Service_HTTP-Notification_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1505" />
</frame>
<item id="1505" />
Res_Amazon-Simple-Notification-Service_Topic_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1506" />
</frame>
<item id="1506" />
Res_Amazon-Simple-Queue-Service_Message_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1507" />
</frame>
<item id="1507" />
Res_Amazon-Simple-Queue-Service_Queue_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1508" />
</frame>
<item id="1508" />
Res_Amazon-DevOps-Guru_Insights_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1667" />
</frame>
<item id="1667" />
Res_Amazon-Rekognition_Image_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1668" />
</frame>
<item id="1668" />
Res_Amazon-Rekognition_Video_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1669" />
</frame>
<item id="1669" />
Res_Amazon-SageMaker-AI_Canvas_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1670" />
</frame>
<item id="1670" />
Res_Amazon-SageMaker-AI_Geospatial-ML_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1671" />
</frame>
<item id="1671" />
Res_Amazon-SageMaker-AI_Model_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1672" />
</frame>
<item id="1672" />
Res_Amazon-SageMaker-AI_Notebook_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1673" />
</frame>
<item id="1673" />
Res_Amazon-SageMaker-AI_Shadow-Testing_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1674" />
</frame>
<item id="1674" />
Res_Amazon-SageMaker-AI_Train_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1675" />
</frame>
<item id="1675" />
Res_Amazon-Textract_Analyze-Lending_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1676" />
</frame>
<item id="1676" />
Res_Amazon-Managed-Blockchain_Blockchain_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1493" />
</frame>
<item id="1493" />
Res_Amazon-Pinpoint_Journey_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1859" />
</frame>
<item id="1859" />
Res_Amazon-Simple-Email-Service_Email_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1860" />
</frame>
<item id="1860" />
Res_AWS-Elastic-Beanstalk_Application_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1781" />
</frame>
<item id="1781" />
Res_AWS-Elastic-Beanstalk_Deployment_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1782" />
</frame>
<item id="1782" />
Res_AWS-Lambda_Lambda-Function_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1783" />
</frame>
<item id="1783" />
Res_Amazon-EC2_AMI_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1784" />
</frame>
<item id="1784" />
Res_Amazon-EC2_AWS-Microservice-Extractor-for-.NET_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1785" />
</frame>
<item id="1785" />
Res_Amazon-EC2_Auto-Scaling_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1786" />
</frame>
<item id="1786" />
Res_Amazon-EC2_DB-Instance_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1787" />
</frame>
<item id="1787" />
Res_Amazon-EC2_Elastic-IP-Address_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1788" />
</frame>
<item id="1788" />
Res_Amazon-EC2_Instance-with-CloudWatch_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1789" />
</frame>
<item id="1789" />
Res_Amazon-EC2_Instance_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1790" />
</frame>
<item id="1790" />
Res_Amazon-EC2_Instances_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1791" />
</frame>
<item id="1791" />
Res_Amazon-EC2_Rescue_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1792" />
</frame>
<item id="1792" />
Res_Amazon-EC2_Spot-Instance_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1793" />
</frame>
<item id="1793" />
Res_Amazon-Elastic-Container-Registry_Image_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1677" />
</frame>
<item id="1677" />
Res_Amazon-Elastic-Container-Registry_Registry_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1678" />
</frame>
<item id="1678" />
Res_Amazon-Elastic-Container-Service_Container-1_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1679" />
</frame>
<item id="1679" />
Res_Amazon-Elastic-Container-Service_Container-2_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1680" />
</frame>
<item id="1680" />
Res_Amazon-Elastic-Container-Service_Container-3_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1681" />
</frame>
<item id="1681" />
Res_Amazon-Elastic-Container-Service_CopiIoT-CLI_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1682" />
</frame>
<item id="1682" />
Res_Amazon-Elastic-Container-Service_ECS-Service-Connect_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1683" />
</frame>
<item id="1683" />
Res_Amazon-Elastic-Container-Service_Service_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1684" />
</frame>
<item id="1684" />
Res_Amazon-Elastic-Container-Service_Task_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1685" />
</frame>
<item id="1685" />
Res_Amazon-Elastic-Kubernetes-Service_EKS-on-Outposts_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1686" />
</frame>
<item id="1686" />
Res_AWS-Database-Migration-Service_Database-migration-workflow-or-job_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1794" />
</frame>
<item id="1794" />
Res_Amazon-Aurora-Instance_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1795" />
</frame>
<item id="1795" />
Res_Amazon-Aurora-MariaDB-Instance-Alternate_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1796" />
</frame>
<item id="1796" />
Res_Amazon-Aurora-MariaDB-Instance_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1797" />
</frame>
<item id="1797" />
Res_Amazon-Aurora-MySQL-Instance-Alternate_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1798" />
</frame>
<item id="1798" />
Res_Amazon-Aurora-MySQL-Instance_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1799" />
</frame>
<item id="1799" />
Res_Amazon-Aurora-Oracle-Instance-Alternate_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1800" />
</frame>
<item id="1800" />
This page references SVG files under etc/resources/aws/svg/Resource-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 91-180 of 524 SVG files.
Back to section index
Res_Amazon-Aurora-Oracle-Instance_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1801" />
</frame>
<item id="1801" />
Res_Amazon-Aurora-PIOPS-Instance_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1802" />
</frame>
<item id="1802" />
Res_Amazon-Aurora-PostgreSQL-Instance-Alternate_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1803" />
</frame>
<item id="1803" />
Res_Amazon-Aurora-PostgreSQL-Instance_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1804" />
</frame>
<item id="1804" />
Res_Amazon-Aurora-SQL-Server-Instance-Alternate_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1805" />
</frame>
<item id="1805" />
Res_Amazon-Aurora-SQL-Server-Instance_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1806" />
</frame>
<item id="1806" />
Res_Amazon-Aurora_Amazon-Aurora-Instance-alternate_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1807" />
</frame>
<item id="1807" />
Res_Amazon-Aurora_Amazon-RDS-Instance-Aternate_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1808" />
</frame>
<item id="1808" />
Res_Amazon-Aurora_Amazon-RDS-Instance_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1809" />
</frame>
<item id="1809" />
Res_Amazon-Aurora_Trusted-Language-Extensions-for-PostgreSQL_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1810" />
</frame>
<item id="1810" />
Res_Amazon-DocumentDB_Elastic-Clusters_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1811" />
</frame>
<item id="1811" />
Res_Amazon-DynamoDB_Amazon-DynamoDB-Accelerator_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1812" />
</frame>
<item id="1812" />
Res_Amazon-DynamoDB_Attribute_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1813" />
</frame>
<item id="1813" />
Res_Amazon-DynamoDB_Attributes_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1814" />
</frame>
<item id="1814" />
Res_Amazon-DynamoDB_Global-secondary-index_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1815" />
</frame>
<item id="1815" />
Res_Amazon-DynamoDB_Item_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1816" />
</frame>
<item id="1816" />
Res_Amazon-DynamoDB_Items_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1817" />
</frame>
<item id="1817" />
Res_Amazon-DynamoDB_Standard-Access-Table-Class_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1818" />
</frame>
<item id="1818" />
Res_Amazon-DynamoDB_Standard-Infrequent-Access-Table-Class_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1819" />
</frame>
<item id="1819" />
Res_Amazon-DynamoDB_Stream_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1820" />
</frame>
<item id="1820" />
Res_Amazon-DynamoDB_Table_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1821" />
</frame>
<item id="1821" />
Res_Amazon-ElastiCache_Cache-Node_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1822" />
</frame>
<item id="1822" />
Res_Amazon-ElastiCache_ElastiCache-for-Memcached_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1823" />
</frame>
<item id="1823" />
Res_Amazon-ElastiCache_ElastiCache-for-Redis_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1824" />
</frame>
<item id="1824" />
Res_Amazon-ElastiCache_ElastiCache-for-Valkey_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1825" />
</frame>
<item id="1825" />
Res_Amazon-RDS-Proxy-Instance-Alternate_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1826" />
</frame>
<item id="1826" />
Res_Amazon-RDS-Proxy-Instance_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1827" />
</frame>
<item id="1827" />
Res_Amazon-RDS_Blue-Green-Deployments_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1828" />
</frame>
<item id="1828" />
Res_Amazon-RDS_Multi-AZ-DB-Cluster_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1829" />
</frame>
<item id="1829" />
Res_Amazon-RDS_Multi-AZ_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1830" />
</frame>
<item id="1830" />
Res_Amazon-RDS_Optimized-Writes_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1831" />
</frame>
<item id="1831" />
Res_Amazon-RDS_Trusted-Language-Extensions-for-PostgreSQL_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1832" />
</frame>
<item id="1832" />
Res_AWS-Cloud9_Cloud9_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1858" />
</frame>
<item id="1858" />
Res_Amazon-WorkSpaces-Family_Amazon-WorkSpaces-Core_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1462" />
</frame>
<item id="1462" />
Res_Amazon-WorkSpaces-Family_Amazon-WorkSpaces-Secure-Browser_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1463" />
</frame>
<item id="1463" />
Res_Amazon-WorkSpaces-Family_Amazon-WorkSpaces_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1464" />
</frame>
<item id="1464" />
Res_AWS-Amplify_AWS-Amplify-Studio_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1852" />
</frame>
<item id="1852" />
Res_Amazon-Location-Service_Geofence_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1853" />
</frame>
<item id="1853" />
Res_Amazon-Location-Service_Map _48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1854" />
</frame>
<item id="1854" />
Res_Amazon-Location-Service_Place_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1855" />
</frame>
<item id="1855" />
Res_Amazon-Location-Service_Routes_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1856" />
</frame>
<item id="1856" />
Res_Amazon-Location-Service_Track _48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1857" />
</frame>
<item id="1857" />
Res_AWS-Management-Console_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1687" />
</frame>
<item id="1687" />
Res_Alert_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1688" />
</frame>
<item id="1688" />
Res_Authenticated-User_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1689" />
</frame>
<item id="1689" />
Res_Camera_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1690" />
</frame>
<item id="1690" />
Res_Chat_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1691" />
</frame>
<item id="1691" />
Res_Client_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1692" />
</frame>
<item id="1692" />
Res_Cold-Storage_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1693" />
</frame>
<item id="1693" />
Res_Credentials_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1694" />
</frame>
<item id="1694" />
Res_Data-Stream_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1695" />
</frame>
<item id="1695" />
Res_Data-Table_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1696" />
</frame>
<item id="1696" />
Res_Database_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1697" />
</frame>
<item id="1697" />
Res_Disk_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1698" />
</frame>
<item id="1698" />
Res_Document_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1699" />
</frame>
<item id="1699" />
Res_Documents_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1700" />
</frame>
<item id="1700" />
Res_Email_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1701" />
</frame>
<item id="1701" />
Res_Firewall_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1702" />
</frame>
<item id="1702" />
Res_Folder_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1703" />
</frame>
<item id="1703" />
Res_Folders_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1704" />
</frame>
<item id="1704" />
Res_Forums_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1705" />
</frame>
<item id="1705" />
Res_Gear_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1706" />
</frame>
<item id="1706" />
Res_Generic-Application_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1707" />
</frame>
<item id="1707" />
Res_Git-Repository_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1708" />
</frame>
<item id="1708" />
Res_Globe_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1709" />
</frame>
<item id="1709" />
Res_Internet-alt1_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1710" />
</frame>
<item id="1710" />
Res_Internet-alt2_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1711" />
</frame>
<item id="1711" />
Res_Internet_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1712" />
</frame>
<item id="1712" />
Res_JSON-Script_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1713" />
</frame>
<item id="1713" />
Res_Logs_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1714" />
</frame>
<item id="1714" />
Res_Magnifying-Glass_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1715" />
</frame>
<item id="1715" />
Res_Metrics_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1716" />
</frame>
<item id="1716" />
Res_Mobile-client_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1717" />
</frame>
<item id="1717" />
Res_Multimedia_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1718" />
</frame>
<item id="1718" />
Res_Office-building_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1719" />
</frame>
<item id="1719" />
Res_Programming-Language_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1720" />
</frame>
<item id="1720" />
Res_Question_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1721" />
</frame>
<item id="1721" />
Res_Recover_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1722" />
</frame>
<item id="1722" />
Res_SAML-token_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1723" />
</frame>
<item id="1723" />
Res_SDK_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1724" />
</frame>
<item id="1724" />
Res_SSL-padlock_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1725" />
</frame>
<item id="1725" />
Res_Server_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1726" />
</frame>
<item id="1726" />
Res_Servers_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1727" />
</frame>
<item id="1727" />
Res_Shield_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1728" />
</frame>
<item id="1728" />
Res_Source-Code_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1729" />
</frame>
<item id="1729" />
Res_Tape-storage_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1730" />
</frame>
<item id="1730" />
Res_Toolkit_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1731" />
</frame>
<item id="1731" />
Res_User_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1732" />
</frame>
<item id="1732" />
Res_Users_48_Dark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1733" />
</frame>
<item id="1733" />
Res_AWS-Management-Console_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1734" />
</frame>
<item id="1734" />
This page references SVG files under etc/resources/aws/svg/Resource-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 181-270 of 524 SVG files.
Back to section index
Res_Alert_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1735" />
</frame>
<item id="1735" />
Res_Authenticated-User_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1736" />
</frame>
<item id="1736" />
Res_Camera_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1737" />
</frame>
<item id="1737" />
Res_Chat_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1738" />
</frame>
<item id="1738" />
Res_Client_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1739" />
</frame>
<item id="1739" />
Res_Cold-Storage_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1740" />
</frame>
<item id="1740" />
Res_Credentials_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1741" />
</frame>
<item id="1741" />
Res_Data-Stream_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1742" />
</frame>
<item id="1742" />
Res_Data-Table_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1743" />
</frame>
<item id="1743" />
Res_Database_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1744" />
</frame>
<item id="1744" />
Res_Disk_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1745" />
</frame>
<item id="1745" />
Res_Document_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1746" />
</frame>
<item id="1746" />
Res_Documents_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1747" />
</frame>
<item id="1747" />
Res_Email_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1748" />
</frame>
<item id="1748" />
Res_Firewall_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1749" />
</frame>
<item id="1749" />
Res_Folder_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1750" />
</frame>
<item id="1750" />
Res_Folders_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1751" />
</frame>
<item id="1751" />
Res_Forums_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1752" />
</frame>
<item id="1752" />
Res_Gear_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1753" />
</frame>
<item id="1753" />
Res_Generic-Application_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1754" />
</frame>
<item id="1754" />
Res_Git-Repository_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1755" />
</frame>
<item id="1755" />
Res_Globe_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1756" />
</frame>
<item id="1756" />
Res_Internet-alt1_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1757" />
</frame>
<item id="1757" />
Res_Internet-alt2_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1758" />
</frame>
<item id="1758" />
Res_Internet_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1759" />
</frame>
<item id="1759" />
Res_JSON-Script_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1760" />
</frame>
<item id="1760" />
Res_Logs_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1761" />
</frame>
<item id="1761" />
Res_Magnifying-Glass_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1762" />
</frame>
<item id="1762" />
Res_Metrics_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1763" />
</frame>
<item id="1763" />
Res_Mobile-client_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1764" />
</frame>
<item id="1764" />
Res_Multimedia_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1765" />
</frame>
<item id="1765" />
Res_Office-building_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1766" />
</frame>
<item id="1766" />
Res_Programming-Language_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1767" />
</frame>
<item id="1767" />
Res_Question_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1768" />
</frame>
<item id="1768" />
Res_Recover_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1769" />
</frame>
<item id="1769" />
Res_SAML-token_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1770" />
</frame>
<item id="1770" />
Res_SDK_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1771" />
</frame>
<item id="1771" />
Res_SSL-padlock_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1772" />
</frame>
<item id="1772" />
Res_Server_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1773" />
</frame>
<item id="1773" />
Res_Servers_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1774" />
</frame>
<item id="1774" />
Res_Shield_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1775" />
</frame>
<item id="1775" />
Res_Source-Code_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1776" />
</frame>
<item id="1776" />
Res_Tape-storage_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1777" />
</frame>
<item id="1777" />
Res_Toolkit_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1778" />
</frame>
<item id="1778" />
Res_User_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1779" />
</frame>
<item id="1779" />
Res_Users_48_Light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1780" />
</frame>
<item id="1780" />
Res_AWS-IoT-Analytics_Channel_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1337" />
</frame>
<item id="1337" />
Res_AWS-IoT-Analytics_Data-Store_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1338" />
</frame>
<item id="1338" />
Res_AWS-IoT-Analytics_Dataset_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1339" />
</frame>
<item id="1339" />
Res_AWS-IoT-Analytics_Notebook_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1340" />
</frame>
<item id="1340" />
Res_AWS-IoT-Analytics_Pipeline_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1341" />
</frame>
<item id="1341" />
Res_AWS-IoT-Core_Device-Advisor_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1342" />
</frame>
<item id="1342" />
Res_AWS-IoT-Core_Device-Location_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1343" />
</frame>
<item id="1343" />
Res_AWS-IoT-Device-Defender_IoT-Device-Jobs_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1344" />
</frame>
<item id="1344" />
Res_AWS-IoT-Device-Management_Fleet-Hub_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1345" />
</frame>
<item id="1345" />
Res_AWS-IoT-Device-Tester_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1346" />
</frame>
<item id="1346" />
Res_AWS-IoT-Greengrass_Artifact_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1347" />
</frame>
<item id="1347" />
Res_AWS-IoT-Greengrass_Component-Machine-Learning_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1348" />
</frame>
<item id="1348" />
Res_AWS-IoT-Greengrass_Component-Nucleus_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1349" />
</frame>
<item id="1349" />
Res_AWS-IoT-Greengrass_Component-Private_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1350" />
</frame>
<item id="1350" />
Res_AWS-IoT-Greengrass_Component-Public_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1351" />
</frame>
<item id="1351" />
Res_AWS-IoT-Greengrass_Component_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1352" />
</frame>
<item id="1352" />
Res_AWS-IoT-Greengrass_Connector_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1353" />
</frame>
<item id="1353" />
Res_AWS-IoT-Greengrass_Interprocess-Communication_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1354" />
</frame>
<item id="1354" />
Res_AWS-IoT-Greengrass_Protocol_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1355" />
</frame>
<item id="1355" />
Res_AWS-IoT-Greengrass_Recipe_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1356" />
</frame>
<item id="1356" />
Res_AWS-IoT-Greengrass_Stream-Manager_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1357" />
</frame>
<item id="1357" />
Res_AWS-IoT-Hardware-Board_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1358" />
</frame>
<item id="1358" />
Res_AWS-IoT-Rule_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1359" />
</frame>
<item id="1359" />
Res_AWS-IoT-SiteWise_Asset-Hierarchy_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1360" />
</frame>
<item id="1360" />
Res_AWS-IoT-SiteWise_Asset-Model_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1361" />
</frame>
<item id="1361" />
Res_AWS-IoT-SiteWise_Asset-Properties_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1362" />
</frame>
<item id="1362" />
Res_AWS-IoT-SiteWise_Asset_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1363" />
</frame>
<item id="1363" />
Res_AWS-IoT-SiteWise_Data-Streams_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1364" />
</frame>
<item id="1364" />
Res_AWS-IoT_Action_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1365" />
</frame>
<item id="1365" />
Res_AWS-IoT_Actuator_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1366" />
</frame>
<item id="1366" />
Res_AWS-IoT_Alexa_Enabled-Device_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1367" />
</frame>
<item id="1367" />
Res_AWS-IoT_Alexa_Skill_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1368" />
</frame>
<item id="1368" />
Res_AWS-IoT_Alexa_Voice-Service_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1369" />
</frame>
<item id="1369" />
Res_AWS-IoT_Certificate_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1370" />
</frame>
<item id="1370" />
Res_AWS-IoT_Desired-State_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1371" />
</frame>
<item id="1371" />
Res_AWS-IoT_Device-Gateway_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1372" />
</frame>
<item id="1372" />
Res_AWS-IoT_Echo_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1373" />
</frame>
<item id="1373" />
Res_AWS-IoT_Fire-TV_Stick_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1374" />
</frame>
<item id="1374" />
Res_AWS-IoT_Fire_TV_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1375" />
</frame>
<item id="1375" />
Res_AWS-IoT_HTTP2-Protocol_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1376" />
</frame>
<item id="1376" />
Res_AWS-IoT_HTTP_Protocol_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1377" />
</frame>
<item id="1377" />
Res_AWS-IoT_Lambda_Function_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1378" />
</frame>
<item id="1378" />
Res_AWS-IoT_LoRaWAN-Protocol_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1379" />
</frame>
<item id="1379" />
Res_AWS-IoT_MQTT_Protocol_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1380" />
</frame>
<item id="1380" />
This page references SVG files under etc/resources/aws/svg/Resource-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 271-360 of 524 SVG files.
Back to section index
Res_AWS-IoT_Over-Air-Update_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1381" />
</frame>
<item id="1381" />
Res_AWS-IoT_Policy_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1382" />
</frame>
<item id="1382" />
Res_AWS-IoT_Reported-State_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1383" />
</frame>
<item id="1383" />
Res_AWS-IoT_Sailboat_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1384" />
</frame>
<item id="1384" />
Res_AWS-IoT_Sensor_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1385" />
</frame>
<item id="1385" />
Res_AWS-IoT_Servo_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1386" />
</frame>
<item id="1386" />
Res_AWS-IoT_Shadow_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1387" />
</frame>
<item id="1387" />
Res_AWS-IoT_Simulator_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1388" />
</frame>
<item id="1388" />
Res_AWS-IoT_Thing_Bank_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1389" />
</frame>
<item id="1389" />
Res_AWS-IoT_Thing_Bicycle_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1390" />
</frame>
<item id="1390" />
Res_AWS-IoT_Thing_Camera_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1391" />
</frame>
<item id="1391" />
Res_AWS-IoT_Thing_Car_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1392" />
</frame>
<item id="1392" />
Res_AWS-IoT_Thing_Cart_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1393" />
</frame>
<item id="1393" />
Res_AWS-IoT_Thing_Coffee-Pot_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1394" />
</frame>
<item id="1394" />
Res_AWS-IoT_Thing_Door-Lock_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1395" />
</frame>
<item id="1395" />
Res_AWS-IoT_Thing_Factory_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1396" />
</frame>
<item id="1396" />
Res_AWS-IoT_Thing_FreeRTOS-Device_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1397" />
</frame>
<item id="1397" />
Res_AWS-IoT_Thing_Generic_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1398" />
</frame>
<item id="1398" />
Res_AWS-IoT_Thing_House_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1399" />
</frame>
<item id="1399" />
Res_AWS-IoT_Thing_Humidity-Sensor_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1400" />
</frame>
<item id="1400" />
Res_AWS-IoT_Thing_Industrial-PC_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1401" />
</frame>
<item id="1401" />
Res_AWS-IoT_Thing_Lightbulb_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1402" />
</frame>
<item id="1402" />
Res_AWS-IoT_Thing_Medical-Emergency_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1403" />
</frame>
<item id="1403" />
Res_AWS-IoT_Thing_PLC_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1404" />
</frame>
<item id="1404" />
Res_AWS-IoT_Thing_Police-Emergency_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1405" />
</frame>
<item id="1405" />
Res_AWS-IoT_Thing_Relay_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1406" />
</frame>
<item id="1406" />
Res_AWS-IoT_Thing_Stacklight_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1407" />
</frame>
<item id="1407" />
Res_AWS-IoT_Thing_Temperature-Humidity-Sensor_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1408" />
</frame>
<item id="1408" />
Res_AWS-IoT_Thing_Temperature-Sensor_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1409" />
</frame>
<item id="1409" />
Res_AWS-IoT_Thing_Temperature-Vibration-Sensor_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1410" />
</frame>
<item id="1410" />
Res_AWS-IoT_Thing_Thermostat_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1411" />
</frame>
<item id="1411" />
Res_AWS-IoT_Thing_Travel_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1412" />
</frame>
<item id="1412" />
Res_AWS-IoT_Thing_Utility_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1413" />
</frame>
<item id="1413" />
Res_AWS-IoT_Thing_Vibration-Sensor_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1414" />
</frame>
<item id="1414" />
Res_AWS-IoT_Thing_Windfarm_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1415" />
</frame>
<item id="1415" />
Res_AWS-IoT_Topic_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1416" />
</frame>
<item id="1416" />
Res_AWS-CloudFormation_Change-Set_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1509" />
</frame>
<item id="1509" />
Res_AWS-CloudFormation_Stack_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1510" />
</frame>
<item id="1510" />
Res_AWS-CloudFormation_Template_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1511" />
</frame>
<item id="1511" />
Res_AWS-CloudTrail_CloudTrail-Lake_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1512" />
</frame>
<item id="1512" />
Res_AWS-License-Manager_Application-Discovery_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1513" />
</frame>
<item id="1513" />
Res_AWS-License-Manager_License-Blending_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1514" />
</frame>
<item id="1514" />
Res_AWS-Organizations_Account_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1515" />
</frame>
<item id="1515" />
Res_AWS-Organizations_Management-Account_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1516" />
</frame>
<item id="1516" />
Res_AWS-Organizations_Organizational-Unit_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1517" />
</frame>
<item id="1517" />
Res_AWS-Systems-Manager_Application-Manager_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1518" />
</frame>
<item id="1518" />
Res_AWS-Systems-Manager_Automation_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1519" />
</frame>
<item id="1519" />
Res_AWS-Systems-Manager_Change-Calendar_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1520" />
</frame>
<item id="1520" />
Res_AWS-Systems-Manager_Change-Manager_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1521" />
</frame>
<item id="1521" />
Res_AWS-Systems-Manager_Compliance_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1522" />
</frame>
<item id="1522" />
Res_AWS-Systems-Manager_Distributor_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1523" />
</frame>
<item id="1523" />
Res_AWS-Systems-Manager_Documents_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1524" />
</frame>
<item id="1524" />
Res_AWS-Systems-Manager_Incident-Manager_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1525" />
</frame>
<item id="1525" />
Res_AWS-Systems-Manager_Inventory_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1526" />
</frame>
<item id="1526" />
Res_AWS-Systems-Manager_Maintenance-Windows_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1527" />
</frame>
<item id="1527" />
Res_AWS-Systems-Manager_OpsCenter_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1528" />
</frame>
<item id="1528" />
Res_AWS-Systems-Manager_Parameter-Store_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1529" />
</frame>
<item id="1529" />
Res_AWS-Systems-Manager_Patch-Manager_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1530" />
</frame>
<item id="1530" />
Res_AWS-Systems-Manager_Run-Command_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1531" />
</frame>
<item id="1531" />
Res_AWS-Systems-Manager_Session-Manager_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1532" />
</frame>
<item id="1532" />
Res_AWS-Systems-Manager_State-Manager_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1533" />
</frame>
<item id="1533" />
Res_AWS-Trusted-Advisor_Checklist-Cost_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1534" />
</frame>
<item id="1534" />
Res_AWS-Trusted-Advisor_Checklist-Fault-Tolerant_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1535" />
</frame>
<item id="1535" />
Res_AWS-Trusted-Advisor_Checklist-Performance_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1536" />
</frame>
<item id="1536" />
Res_AWS-Trusted-Advisor_Checklist-Security_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1537" />
</frame>
<item id="1537" />
Res_AWS-Trusted-Advisor_Checklist_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1538" />
</frame>
<item id="1538" />
Res_Amazon-CloudWatch_Alarm_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1539" />
</frame>
<item id="1539" />
Res_Amazon-CloudWatch_Cross-account-Observability_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1540" />
</frame>
<item id="1540" />
Res_Amazon-CloudWatch_Data-Protection_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1541" />
</frame>
<item id="1541" />
Res_Amazon-CloudWatch_Event-Event-Based_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1542" />
</frame>
<item id="1542" />
Res_Amazon-CloudWatch_Event-Time-Based_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1543" />
</frame>
<item id="1543" />
Res_Amazon-CloudWatch_Evidently_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1544" />
</frame>
<item id="1544" />
Res_Amazon-CloudWatch_Logs_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1545" />
</frame>
<item id="1545" />
Res_Amazon-CloudWatch_Metrics-Insights_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1546" />
</frame>
<item id="1546" />
Res_Amazon-CloudWatch_RUM_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1547" />
</frame>
<item id="1547" />
Res_Amazon-CloudWatch_Rule_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1548" />
</frame>
<item id="1548" />
Res_Amazon-CloudWatch_Synthetics_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1549" />
</frame>
<item id="1549" />
Res_AWS-Cloud-Digital-Interface_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1850" />
</frame>
<item id="1850" />
Res_AWS-Elemental-MediaConnect_MediaConnect-Gateway_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1851" />
</frame>
<item id="1851" />
Res_AWS-Application-Discovery-Service_AWS-Agentless-Collector_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1833" />
</frame>
<item id="1833" />
Res_AWS-Application-Discovery-Service_AWS-Discovery-Agent_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1834" />
</frame>
<item id="1834" />
Res_AWS-Application-Discovery-Service_Migration-Evaluator-Collector_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1835" />
</frame>
<item id="1835" />
Res_AWS-DataSync_Discovery_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1836" />
</frame>
<item id="1836" />
Res_AWS-Datasync_Agent_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1837" />
</frame>
<item id="1837" />
Res_AWS-Mainframe-Modernization_Analyzer_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1838" />
</frame>
<item id="1838" />
Res_AWS-Mainframe-Modernization_Compiler_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1839" />
</frame>
<item id="1839" />
Res_AWS-Mainframe-Modernization_Converter_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1840" />
</frame>
<item id="1840" />
Res_AWS-Mainframe-Modernization_Developer_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1841" />
</frame>
<item id="1841" />
Res_AWS-Mainframe-Modernization_Runtime_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1842" />
</frame>
<item id="1842" />
Res_AWS-Migration-Hub_Refactor-Spaces-Applications_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1843" />
</frame>
<item id="1843" />
This page references SVG files under etc/resources/aws/svg/Resource-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 361-450 of 524 SVG files.
Back to section index
Res_AWS-Migration-Hub_Refactor-Spaces-Environments_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1844" />
</frame>
<item id="1844" />
Res_AWS-Migration-Hub_Refactor-Spaces-Services_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1845" />
</frame>
<item id="1845" />
Res_AWS-Transfer-Family_AWS-AS2_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1846" />
</frame>
<item id="1846" />
Res_AWS-Transfer-Family_AWS-FTPS_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1847" />
</frame>
<item id="1847" />
Res_AWS-Transfer-Family_AWS-FTP_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1848" />
</frame>
<item id="1848" />
Res_AWS-Transfer-Family_AWS-SFTP_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1849" />
</frame>
<item id="1849" />
Res_AWS-App-Mesh_Mesh_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1550" />
</frame>
<item id="1550" />
Res_AWS-App-Mesh_Virtual-Gateway_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1551" />
</frame>
<item id="1551" />
Res_AWS-App-Mesh_Virtual-Node_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1552" />
</frame>
<item id="1552" />
Res_AWS-App-Mesh_Virtual-Router_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1553" />
</frame>
<item id="1553" />
Res_AWS-App-Mesh_Virtual-Service_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1554" />
</frame>
<item id="1554" />
Res_AWS-Cloud-Map_Namespace_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1555" />
</frame>
<item id="1555" />
Res_AWS-Cloud-Map_Resource_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1556" />
</frame>
<item id="1556" />
Res_AWS-Cloud-Map_Service_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1557" />
</frame>
<item id="1557" />
Res_AWS-Cloud-WAN_Core-Network-Edge_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1558" />
</frame>
<item id="1558" />
Res_AWS-Cloud-WAN_Segment-Network_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1559" />
</frame>
<item id="1559" />
Res_AWS-Cloud-WAN_Transit-Gateway-Route-Table-Attachment_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1560" />
</frame>
<item id="1560" />
Res_AWS-Direct-Connect_Gateway_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1561" />
</frame>
<item id="1561" />
Res_AWS-Transit-Gateway_Attachment_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1562" />
</frame>
<item id="1562" />
Res_Amazon-API-Gateway_Endpoint_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1563" />
</frame>
<item id="1563" />
Res_Amazon-CloudFront_Download-Distribution_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1564" />
</frame>
<item id="1564" />
Res_Amazon-CloudFront_Edge-Location_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1565" />
</frame>
<item id="1565" />
Res_Amazon-CloudFront_Functions_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1566" />
</frame>
<item id="1566" />
Res_Amazon-CloudFront_Streaming-Distribution_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1567" />
</frame>
<item id="1567" />
Res_Amazon-Route-53-Hosted-Zone_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1568" />
</frame>
<item id="1568" />
Res_Amazon-Route-53_Readiness-Checks_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1569" />
</frame>
<item id="1569" />
Res_Amazon-Route-53_Resolver-DNS-Firewall_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1570" />
</frame>
<item id="1570" />
Res_Amazon-Route-53_Resolver-Query-Logging_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1571" />
</frame>
<item id="1571" />
Res_Amazon-Route-53_Resolver_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1572" />
</frame>
<item id="1572" />
Res_Amazon-Route-53_Route-Table_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1573" />
</frame>
<item id="1573" />
Res_Amazon-Route-53_Routing-Controls_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1574" />
</frame>
<item id="1574" />
Res_Amazon-VPC_Carrier-Gateway_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1575" />
</frame>
<item id="1575" />
Res_Amazon-VPC_Customer-Gateway_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1576" />
</frame>
<item id="1576" />
Res_Amazon-VPC_Elastic-Network-Adapter_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1577" />
</frame>
<item id="1577" />
Res_Amazon-VPC_Elastic-Network-Interface_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1578" />
</frame>
<item id="1578" />
Res_Amazon-VPC_Endpoints_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1579" />
</frame>
<item id="1579" />
Res_Amazon-VPC_Flow-Logs_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1580" />
</frame>
<item id="1580" />
Res_Amazon-VPC_Internet-Gateway_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1581" />
</frame>
<item id="1581" />
Res_Amazon-VPC_NAT-Gateway_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1582" />
</frame>
<item id="1582" />
Res_Amazon-VPC_Network-Access-Analyzer_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1583" />
</frame>
<item id="1583" />
Res_Amazon-VPC_Network-Access-Control-List_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1584" />
</frame>
<item id="1584" />
Res_Amazon-VPC_Peering-Connection_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1585" />
</frame>
<item id="1585" />
Res_Amazon-VPC_Reachability-Analyzer_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1586" />
</frame>
<item id="1586" />
Res_Amazon-VPC_Router_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1587" />
</frame>
<item id="1587" />
Res_Amazon-VPC_Traffic-Mirroring_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1588" />
</frame>
<item id="1588" />
Res_Amazon-VPC_VPN-Connection_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1589" />
</frame>
<item id="1589" />
Res_Amazon-VPC_VPN-Gateway_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1590" />
</frame>
<item id="1590" />
Res_Amazon-VPC_Virtual-private-cloud-VPC_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1591" />
</frame>
<item id="1591" />
Res_Elastic-Load-Balancing_Application-Load-Balancer_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1592" />
</frame>
<item id="1592" />
Res_Elastic-Load-Balancing_Classic-Load-Balancer_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1593" />
</frame>
<item id="1593" />
Res_Elastic-Load-Balancing_Gateway-Load-Balancer_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1594" />
</frame>
<item id="1594" />
Res_Elastic-Load-Balancing_Network-Load-Balancer_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1595" />
</frame>
<item id="1595" />
Res_Amazon-Braket_Chandelier_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1417" />
</frame>
<item id="1417" />
Res_Amazon-Braket_Chip_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1418" />
</frame>
<item id="1418" />
Res_Amazon-Braket_Embedded-Simulator_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1419" />
</frame>
<item id="1419" />
Res_Amazon-Braket_Managed-Simulator_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1420" />
</frame>
<item id="1420" />
Res_Amazon-Braket_Noise-Simulator_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1421" />
</frame>
<item id="1421" />
Res_Amazon-Braket_QPU_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1422" />
</frame>
<item id="1422" />
Res_Amazon-Braket_Simulator-1_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1423" />
</frame>
<item id="1423" />
Res_Amazon-Braket_Simulator-2_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1424" />
</frame>
<item id="1424" />
Res_Amazon-Braket_Simulator-3_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1425" />
</frame>
<item id="1425" />
Res_Amazon-Braket_Simulator-4_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1426" />
</frame>
<item id="1426" />
Res_Amazon-Braket_Simulator_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1427" />
</frame>
<item id="1427" />
Res_Amazon-Braket_State-Vector_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1428" />
</frame>
<item id="1428" />
Res_Amazon-Braket_Tensor-Network_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1429" />
</frame>
<item id="1429" />
Res_AWS-Certificate-Manager_Certificate-Authority_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1465" />
</frame>
<item id="1465" />
Res_AWS-Directory-Service_AD-Connector_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1466" />
</frame>
<item id="1466" />
Res_AWS-Directory-Service_AWS-Managed-Microsoft-AD_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1467" />
</frame>
<item id="1467" />
Res_AWS-Directory-Service_Simple-AD_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1468" />
</frame>
<item id="1468" />
Res_AWS-Identity-Access-Management_AWS-STS-Alternate_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1469" />
</frame>
<item id="1469" />
Res_AWS-Identity-Access-Management_AWS-STS_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1470" />
</frame>
<item id="1470" />
Res_AWS-Identity-Access-Management_Add-on_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1471" />
</frame>
<item id="1471" />
Res_AWS-Identity-Access-Management_Data-Encryption-Key_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1472" />
</frame>
<item id="1472" />
Res_AWS-Identity-Access-Management_Encrypted-Data_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1473" />
</frame>
<item id="1473" />
Res_AWS-Identity-Access-Management_IAM-Access-Analyzer_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1474" />
</frame>
<item id="1474" />
Res_AWS-Identity-Access-Management_IAM-Roles-Anywhere_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1475" />
</frame>
<item id="1475" />
Res_AWS-Identity-Access-Management_Long-Term-Security-Credential_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1476" />
</frame>
<item id="1476" />
Res_AWS-Identity-Access-Management_MFA-Token_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1477" />
</frame>
<item id="1477" />
Res_AWS-Identity-Access-Management_Permissions_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1478" />
</frame>
<item id="1478" />
Res_AWS-Identity-Access-Management_Role_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1479" />
</frame>
<item id="1479" />
Res_AWS-Identity-Access-Management_Temporary-Security-Credential_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1480" />
</frame>
<item id="1480" />
Res_AWS-Key-Management-Service_External-Key-Store_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1481" />
</frame>
<item id="1481" />
Res_AWS-Network-Firewall_Endpoints_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1482" />
</frame>
<item id="1482" />
Res_AWS-Security-Hub_Finding_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1483" />
</frame>
<item id="1483" />
Res_AWS-Shield_AWS-Shield-Advanced_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1484" />
</frame>
<item id="1484" />
Res_AWS-WAF_Bad-Bot_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1485" />
</frame>
<item id="1485" />
Res_AWS-WAF_Bot-Control_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1486" />
</frame>
<item id="1486" />
Res_AWS-WAF_Bot_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1487" />
</frame>
<item id="1487" />
Res_AWS-WAF_Filtering-Rule_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1488" />
</frame>
<item id="1488" />
Res_AWS-WAF_Labels_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1489" />
</frame>
<item id="1489" />
This page references SVG files under etc/resources/aws/svg/Resource-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 451-524 of 524 SVG files.
Back to section index
Res_AWS-WAF_Managed-Rule_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1490" />
</frame>
<item id="1490" />
Res_AWS-WAF_Rule_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1491" />
</frame>
<item id="1491" />
Res_Amazon-Inspector_Agent_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1492" />
</frame>
<item id="1492" />
Res_AWS-Backup_AWS-Backup-Support-for-VMware-Workloads_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1596" />
</frame>
<item id="1596" />
Res_AWS-Backup_AWS-Backup-for-AWS-CloudFormation_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1597" />
</frame>
<item id="1597" />
Res_AWS-Backup_AWS-Backup-support-for-Amazon-FSx-for-NetApp-ONTAP_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1598" />
</frame>
<item id="1598" />
Res_AWS-Backup_AWS-Backup-support-for-Amazon-S3_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1599" />
</frame>
<item id="1599" />
Res_AWS-Backup_Audit-Manager_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1600" />
</frame>
<item id="1600" />
Res_AWS-Backup_Backup-Plan_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1601" />
</frame>
<item id="1601" />
Res_AWS-Backup_Backup-Restore_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1602" />
</frame>
<item id="1602" />
Res_AWS-Backup_Backup-Vault_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1603" />
</frame>
<item id="1603" />
Res_AWS-Backup_Compliance-Reporting_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1604" />
</frame>
<item id="1604" />
Res_AWS-Backup_Compute_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1605" />
</frame>
<item id="1605" />
Res_AWS-Backup_Database_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1606" />
</frame>
<item id="1606" />
Res_AWS-Backup_Gateway_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1607" />
</frame>
<item id="1607" />
Res_AWS-Backup_Legal-Hold_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1608" />
</frame>
<item id="1608" />
Res_AWS-Backup_Recovery-Point-Objective_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1609" />
</frame>
<item id="1609" />
Res_AWS-Backup_Recovery-Time-Objective_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1610" />
</frame>
<item id="1610" />
Res_AWS-Backup_Storage_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1611" />
</frame>
<item id="1611" />
Res_AWS-Backup_Vault-Lock_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1612" />
</frame>
<item id="1612" />
Res_AWS-Backup_Virtual-Machine-Monitor_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1613" />
</frame>
<item id="1613" />
Res_AWS-Backup_Virtual-Machine_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1614" />
</frame>
<item id="1614" />
Res_AWS-Snowball_Snowball-Import-Export_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1615" />
</frame>
<item id="1615" />
Res_AWS-Storage-Gateway_Amazon-FSx-File-Gateway_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1616" />
</frame>
<item id="1616" />
Res_AWS-Storage-Gateway_Amazon-S3-File-Gateway_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1617" />
</frame>
<item id="1617" />
Res_AWS-Storage-Gateway_Cached-Volume_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1618" />
</frame>
<item id="1618" />
Res_AWS-Storage-Gateway_File-Gateway_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1619" />
</frame>
<item id="1619" />
Res_AWS-Storage-Gateway_Noncached-Volume_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1620" />
</frame>
<item id="1620" />
Res_AWS-Storage-Gateway_Tape-Gateway_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1621" />
</frame>
<item id="1621" />
Res_AWS-Storage-Gateway_Virtual-Tape-Library_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1622" />
</frame>
<item id="1622" />
Res_AWS-Storage-Gateway_Volume-Gateway_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1623" />
</frame>
<item id="1623" />
Res_Amazon-Elastic-Block-Store_Amazon-Data-Lifecycle-Manager_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1624" />
</frame>
<item id="1624" />
Res_Amazon-Elastic-Block-Store_Multiple-Volumes_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1625" />
</frame>
<item id="1625" />
Res_Amazon-Elastic-Block-Store_Snapshot_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1626" />
</frame>
<item id="1626" />
Res_Amazon-Elastic-Block-Store_Volume-gp3_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1627" />
</frame>
<item id="1627" />
Res_Amazon-Elastic-Block-Store_Volume_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1628" />
</frame>
<item id="1628" />
Res_Amazon-Elastic-File-System_EFS-Intelligent-Tiering_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1629" />
</frame>
<item id="1629" />
Res_Amazon-Elastic-File-System_EFS-One-Zone-Infrequent-Access_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1630" />
</frame>
<item id="1630" />
Res_Amazon-Elastic-File-System_EFS-One-Zone_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1631" />
</frame>
<item id="1631" />
Res_Amazon-Elastic-File-System_EFS-Standard-Infrequent-Access_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1632" />
</frame>
<item id="1632" />
Res_Amazon-Elastic-File-System_EFS-Standard_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1633" />
</frame>
<item id="1633" />
Res_Amazon-Elastic-File-System_Elastic-Throughput_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1634" />
</frame>
<item id="1634" />
Res_Amazon-Elastic-File-System_File-System_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1635" />
</frame>
<item id="1635" />
Res_Amazon-File-Cache_Hybrid-NFS-linked-datasets_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1636" />
</frame>
<item id="1636" />
Res_Amazon-File-Cache_On-premises-NFS-linked-datasets_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1637" />
</frame>
<item id="1637" />
Res_Amazon-File-Cache_S3-linked-datasets_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1638" />
</frame>
<item id="1638" />
Res_Amazon-Simple-Storage-Service-Glacier_Archive_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1639" />
</frame>
<item id="1639" />
Res_Amazon-Simple-Storage-Service-Glacier_Vault_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1640" />
</frame>
<item id="1640" />
Res_Amazon-Simple-Storage-Service_Bucket-With-Objects_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1641" />
</frame>
<item id="1641" />
Res_Amazon-Simple-Storage-Service_Bucket_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1642" />
</frame>
<item id="1642" />
Res_Amazon-Simple-Storage-Service_Directory-bucket_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1643" />
</frame>
<item id="1643" />
Res_Amazon-Simple-Storage-Service_General-Access-Points_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1644" />
</frame>
<item id="1644" />
Res_Amazon-Simple-Storage-Service_Object_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1645" />
</frame>
<item id="1645" />
Res_Amazon-Simple-Storage-Service_S3-Batch-Operations_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1646" />
</frame>
<item id="1646" />
Res_Amazon-Simple-Storage-Service_S3-Express-One-Zone_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1647" />
</frame>
<item id="1647" />
Res_Amazon-Simple-Storage-Service_S3-Glacier-Deep-Archive_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1648" />
</frame>
<item id="1648" />
Res_Amazon-Simple-Storage-Service_S3-Glacier-Flexible-Retrieval_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1649" />
</frame>
<item id="1649" />
Res_Amazon-Simple-Storage-Service_S3-Glacier-Instant-Retrieval_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1650" />
</frame>
<item id="1650" />
Res_Amazon-Simple-Storage-Service_S3-Intelligent-Tiering_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1651" />
</frame>
<item id="1651" />
Res_Amazon-Simple-Storage-Service_S3-Multi-Region-Access-Points_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1652" />
</frame>
<item id="1652" />
Res_Amazon-Simple-Storage-Service_S3-Object-Lambda-Access-Points_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1653" />
</frame>
<item id="1653" />
Res_Amazon-Simple-Storage-Service_S3-Object-Lambda_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1654" />
</frame>
<item id="1654" />
Res_Amazon-Simple-Storage-Service_S3-Object-Lock_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1655" />
</frame>
<item id="1655" />
Res_Amazon-Simple-Storage-Service_S3-On-Outposts_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1656" />
</frame>
<item id="1656" />
Res_Amazon-Simple-Storage-Service_S3-One-Zone-IA_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1657" />
</frame>
<item id="1657" />
Res_Amazon-Simple-Storage-Service_S3-Replication-Time-Control_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1658" />
</frame>
<item id="1658" />
Res_Amazon-Simple-Storage-Service_S3-Replication_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1659" />
</frame>
<item id="1659" />
Res_Amazon-Simple-Storage-Service_S3-Select_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1660" />
</frame>
<item id="1660" />
Res_Amazon-Simple-Storage-Service_S3-Standard-IA_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1661" />
</frame>
<item id="1661" />
Res_Amazon-Simple-Storage-Service_S3-Standard_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1662" />
</frame>
<item id="1662" />
Res_Amazon-Simple-Storage-Service_S3-Storage-Lens_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1663" />
</frame>
<item id="1663" />
Res_Amazon-Simple-Storage-Service_S3-Tables_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1664" />
</frame>
<item id="1664" />
Res_Amazon-Simple-Storage-Service_S3-Vectors_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1665" />
</frame>
<item id="1665" />
Res_Amazon-Simple-Storage-Service_VPC-Access-Points_48
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="1666" />
</frame>
<item id="1666" />
This section contains 4964 SVG files from etc/resources/aws/svg/Tabler-Icons.
Open a page below to load a smaller set of previews.
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 1-90 of 4964 SVG files.
Back to section index
a-b-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100001" />
</frame>
<item id="100001" />
a-b-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100002" />
</frame>
<item id="100002" />
a-b
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100000" />
</frame>
<item id="100000" />
abacus-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100004" />
</frame>
<item id="100004" />
abacus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100003" />
</frame>
<item id="100003" />
abc
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100005" />
</frame>
<item id="100005" />
access-point-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100007" />
</frame>
<item id="100007" />
access-point
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100006" />
</frame>
<item id="100006" />
accessible-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100009" />
</frame>
<item id="100009" />
accessible
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100008" />
</frame>
<item id="100008" />
activity-heartbeat
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100011" />
</frame>
<item id="100011" />
activity
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100010" />
</frame>
<item id="100010" />
ad-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100013" />
</frame>
<item id="100013" />
ad-circle-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100015" />
</frame>
<item id="100015" />
ad-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100014" />
</frame>
<item id="100014" />
ad-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100016" />
</frame>
<item id="100016" />
ad
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100012" />
</frame>
<item id="100012" />
address-book-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100018" />
</frame>
<item id="100018" />
address-book
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100017" />
</frame>
<item id="100017" />
adjustments-alt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100020" />
</frame>
<item id="100020" />
adjustments-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100021" />
</frame>
<item id="100021" />
adjustments-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100022" />
</frame>
<item id="100022" />
adjustments-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100023" />
</frame>
<item id="100023" />
adjustments-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100024" />
</frame>
<item id="100024" />
adjustments-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100025" />
</frame>
<item id="100025" />
adjustments-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100026" />
</frame>
<item id="100026" />
adjustments-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100027" />
</frame>
<item id="100027" />
adjustments-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100028" />
</frame>
<item id="100028" />
adjustments-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100029" />
</frame>
<item id="100029" />
adjustments-horizontal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100030" />
</frame>
<item id="100030" />
adjustments-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100031" />
</frame>
<item id="100031" />
adjustments-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100032" />
</frame>
<item id="100032" />
adjustments-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100033" />
</frame>
<item id="100033" />
adjustments-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100034" />
</frame>
<item id="100034" />
adjustments-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100035" />
</frame>
<item id="100035" />
adjustments-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100036" />
</frame>
<item id="100036" />
adjustments-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100037" />
</frame>
<item id="100037" />
adjustments-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100038" />
</frame>
<item id="100038" />
adjustments-spark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100039" />
</frame>
<item id="100039" />
adjustments-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100040" />
</frame>
<item id="100040" />
adjustments-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100041" />
</frame>
<item id="100041" />
adjustments-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100042" />
</frame>
<item id="100042" />
adjustments
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100019" />
</frame>
<item id="100019" />
aerial-lift
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100043" />
</frame>
<item id="100043" />
affiliate
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100044" />
</frame>
<item id="100044" />
ai
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100045" />
</frame>
<item id="100045" />
air-balloon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100046" />
</frame>
<item id="100046" />
air-conditioning-disabled
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100048" />
</frame>
<item id="100048" />
air-conditioning
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100047" />
</frame>
<item id="100047" />
air-traffic-control
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100049" />
</frame>
<item id="100049" />
alarm-average
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100051" />
</frame>
<item id="100051" />
alarm-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100052" />
</frame>
<item id="100052" />
alarm-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100053" />
</frame>
<item id="100053" />
alarm-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100054" />
</frame>
<item id="100054" />
alarm-smoke
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100055" />
</frame>
<item id="100055" />
alarm-snooze
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100056" />
</frame>
<item id="100056" />
alarm
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100050" />
</frame>
<item id="100050" />
album-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100058" />
</frame>
<item id="100058" />
album
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100057" />
</frame>
<item id="100057" />
alert-circle-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100060" />
</frame>
<item id="100060" />
alert-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100059" />
</frame>
<item id="100059" />
alert-hexagon-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100062" />
</frame>
<item id="100062" />
alert-hexagon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100061" />
</frame>
<item id="100061" />
alert-octagon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100063" />
</frame>
<item id="100063" />
alert-small-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100065" />
</frame>
<item id="100065" />
alert-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100064" />
</frame>
<item id="100064" />
alert-square-rounded-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100068" />
</frame>
<item id="100068" />
alert-square-rounded
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100067" />
</frame>
<item id="100067" />
alert-square
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100066" />
</frame>
<item id="100066" />
alert-triangle-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100070" />
</frame>
<item id="100070" />
alert-triangle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100069" />
</frame>
<item id="100069" />
alien
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100071" />
</frame>
<item id="100071" />
align-box-bottom-center
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100072" />
</frame>
<item id="100072" />
align-box-bottom-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100073" />
</frame>
<item id="100073" />
align-box-bottom-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100074" />
</frame>
<item id="100074" />
align-box-center-bottom
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100075" />
</frame>
<item id="100075" />
align-box-center-middle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100076" />
</frame>
<item id="100076" />
align-box-center-stretch
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100077" />
</frame>
<item id="100077" />
align-box-center-top
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100078" />
</frame>
<item id="100078" />
align-box-left-bottom
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100079" />
</frame>
<item id="100079" />
align-box-left-middle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100080" />
</frame>
<item id="100080" />
align-box-left-stretch
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100081" />
</frame>
<item id="100081" />
align-box-left-top
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100082" />
</frame>
<item id="100082" />
align-box-right-bottom
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100083" />
</frame>
<item id="100083" />
align-box-right-middle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100084" />
</frame>
<item id="100084" />
align-box-right-stretch
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100085" />
</frame>
<item id="100085" />
align-box-right-top
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100086" />
</frame>
<item id="100086" />
align-box-top-center
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100087" />
</frame>
<item id="100087" />
align-box-top-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100088" />
</frame>
<item id="100088" />
align-box-top-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100089" />
</frame>
<item id="100089" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 91-180 of 4964 SVG files.
Back to section index
align-center
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100090" />
</frame>
<item id="100090" />
align-justified
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100091" />
</frame>
<item id="100091" />
align-left-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100093" />
</frame>
<item id="100093" />
align-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100092" />
</frame>
<item id="100092" />
align-right-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100095" />
</frame>
<item id="100095" />
align-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100094" />
</frame>
<item id="100094" />
alpha
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100096" />
</frame>
<item id="100096" />
alphabet-arabic
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100097" />
</frame>
<item id="100097" />
alphabet-bangla
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100098" />
</frame>
<item id="100098" />
alphabet-cyrillic
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100099" />
</frame>
<item id="100099" />
alphabet-greek
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100100" />
</frame>
<item id="100100" />
alphabet-hebrew
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100101" />
</frame>
<item id="100101" />
alphabet-korean
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100102" />
</frame>
<item id="100102" />
alphabet-latin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100103" />
</frame>
<item id="100103" />
alphabet-thai
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100104" />
</frame>
<item id="100104" />
alt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100105" />
</frame>
<item id="100105" />
ambulance
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100106" />
</frame>
<item id="100106" />
ampersand
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100107" />
</frame>
<item id="100107" />
analyze-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100109" />
</frame>
<item id="100109" />
analyze
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100108" />
</frame>
<item id="100108" />
anchor-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100111" />
</frame>
<item id="100111" />
anchor
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100110" />
</frame>
<item id="100110" />
angle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100112" />
</frame>
<item id="100112" />
ankh
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100113" />
</frame>
<item id="100113" />
antenna-bars-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100115" />
</frame>
<item id="100115" />
antenna-bars-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100116" />
</frame>
<item id="100116" />
antenna-bars-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100117" />
</frame>
<item id="100117" />
antenna-bars-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100118" />
</frame>
<item id="100118" />
antenna-bars-5
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100119" />
</frame>
<item id="100119" />
antenna-bars-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100120" />
</frame>
<item id="100120" />
antenna-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100121" />
</frame>
<item id="100121" />
antenna
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100114" />
</frame>
<item id="100114" />
aperture-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100123" />
</frame>
<item id="100123" />
aperture
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100122" />
</frame>
<item id="100122" />
api-app-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100126" />
</frame>
<item id="100126" />
api-app
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100125" />
</frame>
<item id="100125" />
api-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100127" />
</frame>
<item id="100127" />
api
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100124" />
</frame>
<item id="100124" />
app-window
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100128" />
</frame>
<item id="100128" />
apple
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100129" />
</frame>
<item id="100129" />
apps-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100131" />
</frame>
<item id="100131" />
apps
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100130" />
</frame>
<item id="100130" />
archery-arrow
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100132" />
</frame>
<item id="100132" />
archive-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100134" />
</frame>
<item id="100134" />
archive
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100133" />
</frame>
<item id="100133" />
armchair-2-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100137" />
</frame>
<item id="100137" />
armchair-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100136" />
</frame>
<item id="100136" />
armchair-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100138" />
</frame>
<item id="100138" />
armchair
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100135" />
</frame>
<item id="100135" />
arrow-autofit-content
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100139" />
</frame>
<item id="100139" />
arrow-autofit-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100140" />
</frame>
<item id="100140" />
arrow-autofit-height
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100141" />
</frame>
<item id="100141" />
arrow-autofit-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100142" />
</frame>
<item id="100142" />
arrow-autofit-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100143" />
</frame>
<item id="100143" />
arrow-autofit-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100144" />
</frame>
<item id="100144" />
arrow-autofit-width
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100145" />
</frame>
<item id="100145" />
arrow-back-up-double
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100148" />
</frame>
<item id="100148" />
arrow-back-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100147" />
</frame>
<item id="100147" />
arrow-back
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100146" />
</frame>
<item id="100146" />
arrow-badge-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100149" />
</frame>
<item id="100149" />
arrow-badge-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100150" />
</frame>
<item id="100150" />
arrow-badge-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100151" />
</frame>
<item id="100151" />
arrow-badge-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100152" />
</frame>
<item id="100152" />
arrow-bar-both
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100153" />
</frame>
<item id="100153" />
arrow-bar-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100154" />
</frame>
<item id="100154" />
arrow-bar-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100155" />
</frame>
<item id="100155" />
arrow-bar-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100156" />
</frame>
<item id="100156" />
arrow-bar-to-down-dashed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100158" />
</frame>
<item id="100158" />
arrow-bar-to-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100157" />
</frame>
<item id="100157" />
arrow-bar-to-left-dashed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100160" />
</frame>
<item id="100160" />
arrow-bar-to-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100159" />
</frame>
<item id="100159" />
arrow-bar-to-right-dashed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100162" />
</frame>
<item id="100162" />
arrow-bar-to-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100161" />
</frame>
<item id="100161" />
arrow-bar-to-up-dashed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100164" />
</frame>
<item id="100164" />
arrow-bar-to-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100163" />
</frame>
<item id="100163" />
arrow-bar-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100165" />
</frame>
<item id="100165" />
arrow-bear-left-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100167" />
</frame>
<item id="100167" />
arrow-bear-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100166" />
</frame>
<item id="100166" />
arrow-bear-right-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100169" />
</frame>
<item id="100169" />
arrow-bear-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100168" />
</frame>
<item id="100168" />
arrow-big-down-line
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100171" />
</frame>
<item id="100171" />
arrow-big-down-lines
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100172" />
</frame>
<item id="100172" />
arrow-big-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100170" />
</frame>
<item id="100170" />
arrow-big-left-line
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100174" />
</frame>
<item id="100174" />
arrow-big-left-lines
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100175" />
</frame>
<item id="100175" />
arrow-big-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100173" />
</frame>
<item id="100173" />
arrow-big-right-line
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100177" />
</frame>
<item id="100177" />
arrow-big-right-lines
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100178" />
</frame>
<item id="100178" />
arrow-big-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100176" />
</frame>
<item id="100176" />
arrow-big-up-line
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100180" />
</frame>
<item id="100180" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 181-270 of 4964 SVG files.
Back to section index
arrow-big-up-lines
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100181" />
</frame>
<item id="100181" />
arrow-big-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100179" />
</frame>
<item id="100179" />
arrow-bounce
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100182" />
</frame>
<item id="100182" />
arrow-capsule
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100183" />
</frame>
<item id="100183" />
arrow-curve-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100184" />
</frame>
<item id="100184" />
arrow-curve-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100185" />
</frame>
<item id="100185" />
arrow-down-bar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100187" />
</frame>
<item id="100187" />
arrow-down-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100188" />
</frame>
<item id="100188" />
arrow-down-dashed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100189" />
</frame>
<item id="100189" />
arrow-down-from-arc
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100190" />
</frame>
<item id="100190" />
arrow-down-left-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100192" />
</frame>
<item id="100192" />
arrow-down-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100191" />
</frame>
<item id="100191" />
arrow-down-rhombus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100193" />
</frame>
<item id="100193" />
arrow-down-right-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100195" />
</frame>
<item id="100195" />
arrow-down-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100194" />
</frame>
<item id="100194" />
arrow-down-square
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100196" />
</frame>
<item id="100196" />
arrow-down-tail
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100197" />
</frame>
<item id="100197" />
arrow-down-to-arc
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100198" />
</frame>
<item id="100198" />
arrow-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100186" />
</frame>
<item id="100186" />
arrow-elbow-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100199" />
</frame>
<item id="100199" />
arrow-elbow-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100200" />
</frame>
<item id="100200" />
arrow-fork
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100201" />
</frame>
<item id="100201" />
arrow-forward-up-double
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100204" />
</frame>
<item id="100204" />
arrow-forward-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100203" />
</frame>
<item id="100203" />
arrow-forward
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100202" />
</frame>
<item id="100202" />
arrow-guide
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100205" />
</frame>
<item id="100205" />
arrow-iteration
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100206" />
</frame>
<item id="100206" />
arrow-left-bar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100208" />
</frame>
<item id="100208" />
arrow-left-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100209" />
</frame>
<item id="100209" />
arrow-left-dashed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100210" />
</frame>
<item id="100210" />
arrow-left-from-arc
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100211" />
</frame>
<item id="100211" />
arrow-left-rhombus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100212" />
</frame>
<item id="100212" />
arrow-left-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100213" />
</frame>
<item id="100213" />
arrow-left-square
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100214" />
</frame>
<item id="100214" />
arrow-left-tail
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100215" />
</frame>
<item id="100215" />
arrow-left-to-arc
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100216" />
</frame>
<item id="100216" />
arrow-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100207" />
</frame>
<item id="100207" />
arrow-loop-left-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100218" />
</frame>
<item id="100218" />
arrow-loop-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100217" />
</frame>
<item id="100217" />
arrow-loop-right-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100220" />
</frame>
<item id="100220" />
arrow-loop-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100219" />
</frame>
<item id="100219" />
arrow-merge-alt-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100222" />
</frame>
<item id="100222" />
arrow-merge-alt-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100223" />
</frame>
<item id="100223" />
arrow-merge-both
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100224" />
</frame>
<item id="100224" />
arrow-merge-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100225" />
</frame>
<item id="100225" />
arrow-merge-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100226" />
</frame>
<item id="100226" />
arrow-merge
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100221" />
</frame>
<item id="100221" />
arrow-move-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100227" />
</frame>
<item id="100227" />
arrow-move-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100228" />
</frame>
<item id="100228" />
arrow-move-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100229" />
</frame>
<item id="100229" />
arrow-move-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100230" />
</frame>
<item id="100230" />
arrow-narrow-down-dashed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100232" />
</frame>
<item id="100232" />
arrow-narrow-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100231" />
</frame>
<item id="100231" />
arrow-narrow-left-dashed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100234" />
</frame>
<item id="100234" />
arrow-narrow-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100233" />
</frame>
<item id="100233" />
arrow-narrow-right-dashed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100236" />
</frame>
<item id="100236" />
arrow-narrow-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100235" />
</frame>
<item id="100235" />
arrow-narrow-up-dashed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100238" />
</frame>
<item id="100238" />
arrow-narrow-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100237" />
</frame>
<item id="100237" />
arrow-ramp-left-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100240" />
</frame>
<item id="100240" />
arrow-ramp-left-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100241" />
</frame>
<item id="100241" />
arrow-ramp-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100239" />
</frame>
<item id="100239" />
arrow-ramp-right-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100243" />
</frame>
<item id="100243" />
arrow-ramp-right-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100244" />
</frame>
<item id="100244" />
arrow-ramp-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100242" />
</frame>
<item id="100242" />
arrow-right-bar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100246" />
</frame>
<item id="100246" />
arrow-right-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100247" />
</frame>
<item id="100247" />
arrow-right-dashed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100248" />
</frame>
<item id="100248" />
arrow-right-from-arc
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100249" />
</frame>
<item id="100249" />
arrow-right-rhombus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100250" />
</frame>
<item id="100250" />
arrow-right-square
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100251" />
</frame>
<item id="100251" />
arrow-right-tail
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100252" />
</frame>
<item id="100252" />
arrow-right-to-arc
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100253" />
</frame>
<item id="100253" />
arrow-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100245" />
</frame>
<item id="100245" />
arrow-rotary-first-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100254" />
</frame>
<item id="100254" />
arrow-rotary-first-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100255" />
</frame>
<item id="100255" />
arrow-rotary-last-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100256" />
</frame>
<item id="100256" />
arrow-rotary-last-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100257" />
</frame>
<item id="100257" />
arrow-rotary-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100258" />
</frame>
<item id="100258" />
arrow-rotary-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100259" />
</frame>
<item id="100259" />
arrow-rotary-straight
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100260" />
</frame>
<item id="100260" />
arrow-roundabout-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100261" />
</frame>
<item id="100261" />
arrow-roundabout-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100262" />
</frame>
<item id="100262" />
arrow-sharp-turn-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100263" />
</frame>
<item id="100263" />
arrow-sharp-turn-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100264" />
</frame>
<item id="100264" />
arrow-up-bar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100266" />
</frame>
<item id="100266" />
arrow-up-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100267" />
</frame>
<item id="100267" />
arrow-up-dashed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100268" />
</frame>
<item id="100268" />
arrow-up-from-arc
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100269" />
</frame>
<item id="100269" />
arrow-up-left-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100271" />
</frame>
<item id="100271" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 271-360 of 4964 SVG files.
Back to section index
arrow-up-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100270" />
</frame>
<item id="100270" />
arrow-up-rhombus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100272" />
</frame>
<item id="100272" />
arrow-up-right-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100274" />
</frame>
<item id="100274" />
arrow-up-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100273" />
</frame>
<item id="100273" />
arrow-up-square
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100275" />
</frame>
<item id="100275" />
arrow-up-tail
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100276" />
</frame>
<item id="100276" />
arrow-up-to-arc
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100277" />
</frame>
<item id="100277" />
arrow-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100265" />
</frame>
<item id="100265" />
arrow-wave-left-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100278" />
</frame>
<item id="100278" />
arrow-wave-left-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100279" />
</frame>
<item id="100279" />
arrow-wave-right-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100280" />
</frame>
<item id="100280" />
arrow-wave-right-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100281" />
</frame>
<item id="100281" />
arrow-zig-zag
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100282" />
</frame>
<item id="100282" />
arrows-cross
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100283" />
</frame>
<item id="100283" />
arrows-diagonal-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100285" />
</frame>
<item id="100285" />
arrows-diagonal-minimize-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100287" />
</frame>
<item id="100287" />
arrows-diagonal-minimize
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100286" />
</frame>
<item id="100286" />
arrows-diagonal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100284" />
</frame>
<item id="100284" />
arrows-diff
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100288" />
</frame>
<item id="100288" />
arrows-double-ne-sw
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100289" />
</frame>
<item id="100289" />
arrows-double-nw-se
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100290" />
</frame>
<item id="100290" />
arrows-double-se-nw
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100291" />
</frame>
<item id="100291" />
arrows-double-sw-ne
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100292" />
</frame>
<item id="100292" />
arrows-down-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100294" />
</frame>
<item id="100294" />
arrows-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100293" />
</frame>
<item id="100293" />
arrows-exchange-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100296" />
</frame>
<item id="100296" />
arrows-exchange
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100295" />
</frame>
<item id="100295" />
arrows-horizontal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100297" />
</frame>
<item id="100297" />
arrows-join-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100299" />
</frame>
<item id="100299" />
arrows-join
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100298" />
</frame>
<item id="100298" />
arrows-left-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100301" />
</frame>
<item id="100301" />
arrows-left-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100302" />
</frame>
<item id="100302" />
arrows-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100300" />
</frame>
<item id="100300" />
arrows-maximize
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100303" />
</frame>
<item id="100303" />
arrows-minimize
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100304" />
</frame>
<item id="100304" />
arrows-move-horizontal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100306" />
</frame>
<item id="100306" />
arrows-move-vertical
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100307" />
</frame>
<item id="100307" />
arrows-move
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100305" />
</frame>
<item id="100305" />
arrows-random
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100308" />
</frame>
<item id="100308" />
arrows-right-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100310" />
</frame>
<item id="100310" />
arrows-right-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100311" />
</frame>
<item id="100311" />
arrows-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100309" />
</frame>
<item id="100309" />
arrows-shuffle-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100313" />
</frame>
<item id="100313" />
arrows-shuffle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100312" />
</frame>
<item id="100312" />
arrows-sort
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100314" />
</frame>
<item id="100314" />
arrows-split-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100316" />
</frame>
<item id="100316" />
arrows-split
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100315" />
</frame>
<item id="100315" />
arrows-transfer-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100317" />
</frame>
<item id="100317" />
arrows-transfer-up-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100319" />
</frame>
<item id="100319" />
arrows-transfer-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100318" />
</frame>
<item id="100318" />
arrows-up-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100321" />
</frame>
<item id="100321" />
arrows-up-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100322" />
</frame>
<item id="100322" />
arrows-up-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100323" />
</frame>
<item id="100323" />
arrows-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100320" />
</frame>
<item id="100320" />
arrows-vertical
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100324" />
</frame>
<item id="100324" />
artboard-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100326" />
</frame>
<item id="100326" />
artboard
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100325" />
</frame>
<item id="100325" />
article-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100328" />
</frame>
<item id="100328" />
article
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100327" />
</frame>
<item id="100327" />
aspect-ratio-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100330" />
</frame>
<item id="100330" />
aspect-ratio
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100329" />
</frame>
<item id="100329" />
assembly-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100332" />
</frame>
<item id="100332" />
assembly
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100331" />
</frame>
<item id="100331" />
asset
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100333" />
</frame>
<item id="100333" />
asterisk-simple
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100335" />
</frame>
<item id="100335" />
asterisk
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100334" />
</frame>
<item id="100334" />
at-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100337" />
</frame>
<item id="100337" />
at
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100336" />
</frame>
<item id="100336" />
atom-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100339" />
</frame>
<item id="100339" />
atom-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100340" />
</frame>
<item id="100340" />
atom
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100338" />
</frame>
<item id="100338" />
augmented-reality-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100342" />
</frame>
<item id="100342" />
augmented-reality-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100343" />
</frame>
<item id="100343" />
augmented-reality
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100341" />
</frame>
<item id="100341" />
auth-2fa
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100344" />
</frame>
<item id="100344" />
automatic-gearbox
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100345" />
</frame>
<item id="100345" />
automation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100346" />
</frame>
<item id="100346" />
avocado
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100347" />
</frame>
<item id="100347" />
award-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100349" />
</frame>
<item id="100349" />
award
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100348" />
</frame>
<item id="100348" />
axe
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100350" />
</frame>
<item id="100350" />
axis-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100351" />
</frame>
<item id="100351" />
axis-y
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100352" />
</frame>
<item id="100352" />
baby-bottle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100353" />
</frame>
<item id="100353" />
baby-carriage
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100354" />
</frame>
<item id="100354" />
background
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100355" />
</frame>
<item id="100355" />
backhoe
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100356" />
</frame>
<item id="100356" />
backpack-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100358" />
</frame>
<item id="100358" />
backpack
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100357" />
</frame>
<item id="100357" />
backslash
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100359" />
</frame>
<item id="100359" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 361-450 of 4964 SVG files.
Back to section index
backspace
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100360" />
</frame>
<item id="100360" />
badge-2k
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100362" />
</frame>
<item id="100362" />
badge-3d
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100363" />
</frame>
<item id="100363" />
badge-3k
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100364" />
</frame>
<item id="100364" />
badge-4k
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100365" />
</frame>
<item id="100365" />
badge-5k
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100366" />
</frame>
<item id="100366" />
badge-8k
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100367" />
</frame>
<item id="100367" />
badge-ad-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100369" />
</frame>
<item id="100369" />
badge-ad
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100368" />
</frame>
<item id="100368" />
badge-ar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100370" />
</frame>
<item id="100370" />
badge-cc
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100371" />
</frame>
<item id="100371" />
badge-hd
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100372" />
</frame>
<item id="100372" />
badge-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100373" />
</frame>
<item id="100373" />
badge-sd
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100374" />
</frame>
<item id="100374" />
badge-tm
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100375" />
</frame>
<item id="100375" />
badge-vo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100376" />
</frame>
<item id="100376" />
badge-vr
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100377" />
</frame>
<item id="100377" />
badge-wc
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100378" />
</frame>
<item id="100378" />
badge
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100361" />
</frame>
<item id="100361" />
badges-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100380" />
</frame>
<item id="100380" />
badges
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100379" />
</frame>
<item id="100379" />
baguette
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100381" />
</frame>
<item id="100381" />
ball-american-football-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100383" />
</frame>
<item id="100383" />
ball-american-football
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100382" />
</frame>
<item id="100382" />
ball-baseball
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100384" />
</frame>
<item id="100384" />
ball-basketball
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100385" />
</frame>
<item id="100385" />
ball-bowling
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100386" />
</frame>
<item id="100386" />
ball-football-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100388" />
</frame>
<item id="100388" />
ball-football
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100387" />
</frame>
<item id="100387" />
ball-tennis
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100389" />
</frame>
<item id="100389" />
ball-volleyball
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100390" />
</frame>
<item id="100390" />
balloon-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100392" />
</frame>
<item id="100392" />
balloon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100391" />
</frame>
<item id="100391" />
ballpen-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100394" />
</frame>
<item id="100394" />
ballpen
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100393" />
</frame>
<item id="100393" />
ban
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100395" />
</frame>
<item id="100395" />
bandage-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100397" />
</frame>
<item id="100397" />
bandage
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100396" />
</frame>
<item id="100396" />
barbell-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100399" />
</frame>
<item id="100399" />
barbell
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100398" />
</frame>
<item id="100398" />
barcode-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100401" />
</frame>
<item id="100401" />
barcode
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100400" />
</frame>
<item id="100400" />
barrel-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100403" />
</frame>
<item id="100403" />
barrel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100402" />
</frame>
<item id="100402" />
barrier-block-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100405" />
</frame>
<item id="100405" />
barrier-block
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100404" />
</frame>
<item id="100404" />
baseline-density-large
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100407" />
</frame>
<item id="100407" />
baseline-density-medium
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100408" />
</frame>
<item id="100408" />
baseline-density-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100409" />
</frame>
<item id="100409" />
baseline
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100406" />
</frame>
<item id="100406" />
basket-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100411" />
</frame>
<item id="100411" />
basket-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100412" />
</frame>
<item id="100412" />
basket-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100413" />
</frame>
<item id="100413" />
basket-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100414" />
</frame>
<item id="100414" />
basket-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100415" />
</frame>
<item id="100415" />
basket-discount
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100416" />
</frame>
<item id="100416" />
basket-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100417" />
</frame>
<item id="100417" />
basket-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100418" />
</frame>
<item id="100418" />
basket-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100419" />
</frame>
<item id="100419" />
basket-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100420" />
</frame>
<item id="100420" />
basket-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100421" />
</frame>
<item id="100421" />
basket-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100422" />
</frame>
<item id="100422" />
basket-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100423" />
</frame>
<item id="100423" />
basket-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100424" />
</frame>
<item id="100424" />
basket-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100425" />
</frame>
<item id="100425" />
basket-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100426" />
</frame>
<item id="100426" />
basket-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100427" />
</frame>
<item id="100427" />
basket-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100428" />
</frame>
<item id="100428" />
basket-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100429" />
</frame>
<item id="100429" />
basket-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100430" />
</frame>
<item id="100430" />
basket-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100431" />
</frame>
<item id="100431" />
basket
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100410" />
</frame>
<item id="100410" />
bat
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100432" />
</frame>
<item id="100432" />
bath-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100434" />
</frame>
<item id="100434" />
bath
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100433" />
</frame>
<item id="100433" />
battery-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100436" />
</frame>
<item id="100436" />
battery-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100437" />
</frame>
<item id="100437" />
battery-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100438" />
</frame>
<item id="100438" />
battery-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100439" />
</frame>
<item id="100439" />
battery-automotive
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100440" />
</frame>
<item id="100440" />
battery-charging-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100442" />
</frame>
<item id="100442" />
battery-charging
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100441" />
</frame>
<item id="100441" />
battery-eco
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100443" />
</frame>
<item id="100443" />
battery-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100444" />
</frame>
<item id="100444" />
battery-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100445" />
</frame>
<item id="100445" />
battery-spark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100446" />
</frame>
<item id="100446" />
battery-vertical-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100448" />
</frame>
<item id="100448" />
battery-vertical-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100449" />
</frame>
<item id="100449" />
battery-vertical-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100450" />
</frame>
<item id="100450" />
battery-vertical-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100451" />
</frame>
<item id="100451" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 451-540 of 4964 SVG files.
Back to section index
battery-vertical-charging-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100453" />
</frame>
<item id="100453" />
battery-vertical-charging
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100452" />
</frame>
<item id="100452" />
battery-vertical-eco
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100454" />
</frame>
<item id="100454" />
battery-vertical-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100455" />
</frame>
<item id="100455" />
battery-vertical-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100456" />
</frame>
<item id="100456" />
battery-vertical
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100447" />
</frame>
<item id="100447" />
battery
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100435" />
</frame>
<item id="100435" />
beach-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100458" />
</frame>
<item id="100458" />
beach
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100457" />
</frame>
<item id="100457" />
bed-flat
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100460" />
</frame>
<item id="100460" />
bed-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100461" />
</frame>
<item id="100461" />
bed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100459" />
</frame>
<item id="100459" />
beer-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100463" />
</frame>
<item id="100463" />
beer
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100462" />
</frame>
<item id="100462" />
bell-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100465" />
</frame>
<item id="100465" />
bell-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100466" />
</frame>
<item id="100466" />
bell-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100467" />
</frame>
<item id="100467" />
bell-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100468" />
</frame>
<item id="100468" />
bell-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100469" />
</frame>
<item id="100469" />
bell-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100470" />
</frame>
<item id="100470" />
bell-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100471" />
</frame>
<item id="100471" />
bell-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100472" />
</frame>
<item id="100472" />
bell-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100473" />
</frame>
<item id="100473" />
bell-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100474" />
</frame>
<item id="100474" />
bell-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100475" />
</frame>
<item id="100475" />
bell-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100476" />
</frame>
<item id="100476" />
bell-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100477" />
</frame>
<item id="100477" />
bell-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100478" />
</frame>
<item id="100478" />
bell-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100479" />
</frame>
<item id="100479" />
bell-ringing-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100481" />
</frame>
<item id="100481" />
bell-ringing
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100480" />
</frame>
<item id="100480" />
bell-school
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100482" />
</frame>
<item id="100482" />
bell-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100483" />
</frame>
<item id="100483" />
bell-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100484" />
</frame>
<item id="100484" />
bell-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100485" />
</frame>
<item id="100485" />
bell-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100486" />
</frame>
<item id="100486" />
bell-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100487" />
</frame>
<item id="100487" />
bell-z
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100488" />
</frame>
<item id="100488" />
bell
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100464" />
</frame>
<item id="100464" />
beta
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100489" />
</frame>
<item id="100489" />
bible
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100490" />
</frame>
<item id="100490" />
bike-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100492" />
</frame>
<item id="100492" />
bike
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100491" />
</frame>
<item id="100491" />
binary-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100494" />
</frame>
<item id="100494" />
binary-tree-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100496" />
</frame>
<item id="100496" />
binary-tree
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100495" />
</frame>
<item id="100495" />
binary
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100493" />
</frame>
<item id="100493" />
binoculars
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100497" />
</frame>
<item id="100497" />
biohazard-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100499" />
</frame>
<item id="100499" />
biohazard
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100498" />
</frame>
<item id="100498" />
blade
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100500" />
</frame>
<item id="100500" />
bleach-chlorine
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100502" />
</frame>
<item id="100502" />
bleach-no-chlorine
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100503" />
</frame>
<item id="100503" />
bleach-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100504" />
</frame>
<item id="100504" />
bleach
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100501" />
</frame>
<item id="100501" />
blend-mode
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100505" />
</frame>
<item id="100505" />
blender
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100506" />
</frame>
<item id="100506" />
blob
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100507" />
</frame>
<item id="100507" />
blockquote
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100508" />
</frame>
<item id="100508" />
blocks
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100509" />
</frame>
<item id="100509" />
bluetooth-connected
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100511" />
</frame>
<item id="100511" />
bluetooth-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100512" />
</frame>
<item id="100512" />
bluetooth-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100513" />
</frame>
<item id="100513" />
bluetooth
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100510" />
</frame>
<item id="100510" />
blur-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100515" />
</frame>
<item id="100515" />
blur
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100514" />
</frame>
<item id="100514" />
bmp
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100516" />
</frame>
<item id="100516" />
body-scan
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100517" />
</frame>
<item id="100517" />
bold-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100519" />
</frame>
<item id="100519" />
bold
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100518" />
</frame>
<item id="100518" />
bolt-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100521" />
</frame>
<item id="100521" />
bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100520" />
</frame>
<item id="100520" />
bomb
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100522" />
</frame>
<item id="100522" />
bone-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100524" />
</frame>
<item id="100524" />
bone
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100523" />
</frame>
<item id="100523" />
bong-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100526" />
</frame>
<item id="100526" />
bong
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100525" />
</frame>
<item id="100525" />
book-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100528" />
</frame>
<item id="100528" />
book-download
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100529" />
</frame>
<item id="100529" />
book-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100530" />
</frame>
<item id="100530" />
book-upload
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100531" />
</frame>
<item id="100531" />
book
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100527" />
</frame>
<item id="100527" />
bookmark-ai
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100533" />
</frame>
<item id="100533" />
bookmark-edit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100534" />
</frame>
<item id="100534" />
bookmark-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100535" />
</frame>
<item id="100535" />
bookmark-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100536" />
</frame>
<item id="100536" />
bookmark-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100537" />
</frame>
<item id="100537" />
bookmark-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100538" />
</frame>
<item id="100538" />
bookmark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100532" />
</frame>
<item id="100532" />
bookmarks-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100540" />
</frame>
<item id="100540" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 541-630 of 4964 SVG files.
Back to section index
bookmarks
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100539" />
</frame>
<item id="100539" />
books-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100542" />
</frame>
<item id="100542" />
books
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100541" />
</frame>
<item id="100541" />
boom
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100543" />
</frame>
<item id="100543" />
border-all
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100544" />
</frame>
<item id="100544" />
border-bottom-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100546" />
</frame>
<item id="100546" />
border-bottom
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100545" />
</frame>
<item id="100545" />
border-corner-ios
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100547" />
</frame>
<item id="100547" />
border-corner-pill
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100548" />
</frame>
<item id="100548" />
border-corner-rounded
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100549" />
</frame>
<item id="100549" />
border-corner-square
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100550" />
</frame>
<item id="100550" />
border-corners
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100551" />
</frame>
<item id="100551" />
border-horizontal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100552" />
</frame>
<item id="100552" />
border-inner
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100553" />
</frame>
<item id="100553" />
border-left-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100555" />
</frame>
<item id="100555" />
border-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100554" />
</frame>
<item id="100554" />
border-none
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100556" />
</frame>
<item id="100556" />
border-outer
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100557" />
</frame>
<item id="100557" />
border-radius
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100558" />
</frame>
<item id="100558" />
border-right-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100560" />
</frame>
<item id="100560" />
border-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100559" />
</frame>
<item id="100559" />
border-sides
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100561" />
</frame>
<item id="100561" />
border-style-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100563" />
</frame>
<item id="100563" />
border-style
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100562" />
</frame>
<item id="100562" />
border-top-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100565" />
</frame>
<item id="100565" />
border-top
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100564" />
</frame>
<item id="100564" />
border-vertical
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100566" />
</frame>
<item id="100566" />
bottle-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100568" />
</frame>
<item id="100568" />
bottle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100567" />
</frame>
<item id="100567" />
bounce-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100569" />
</frame>
<item id="100569" />
bounce-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100570" />
</frame>
<item id="100570" />
bow
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100571" />
</frame>
<item id="100571" />
bowl-chopsticks
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100573" />
</frame>
<item id="100573" />
bowl-spoon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100574" />
</frame>
<item id="100574" />
bowl
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100572" />
</frame>
<item id="100572" />
bowling
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100575" />
</frame>
<item id="100575" />
box-align-bottom-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100578" />
</frame>
<item id="100578" />
box-align-bottom-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100579" />
</frame>
<item id="100579" />
box-align-bottom
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100577" />
</frame>
<item id="100577" />
box-align-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100580" />
</frame>
<item id="100580" />
box-align-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100581" />
</frame>
<item id="100581" />
box-align-top-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100583" />
</frame>
<item id="100583" />
box-align-top-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100584" />
</frame>
<item id="100584" />
box-align-top
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100582" />
</frame>
<item id="100582" />
box-margin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100585" />
</frame>
<item id="100585" />
box-model-2-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100588" />
</frame>
<item id="100588" />
box-model-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100587" />
</frame>
<item id="100587" />
box-model-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100589" />
</frame>
<item id="100589" />
box-model
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100586" />
</frame>
<item id="100586" />
box-multiple-0
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100591" />
</frame>
<item id="100591" />
box-multiple-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100592" />
</frame>
<item id="100592" />
box-multiple-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100593" />
</frame>
<item id="100593" />
box-multiple-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100594" />
</frame>
<item id="100594" />
box-multiple-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100595" />
</frame>
<item id="100595" />
box-multiple-5
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100596" />
</frame>
<item id="100596" />
box-multiple-6
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100597" />
</frame>
<item id="100597" />
box-multiple-7
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100598" />
</frame>
<item id="100598" />
box-multiple-8
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100599" />
</frame>
<item id="100599" />
box-multiple-9
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100600" />
</frame>
<item id="100600" />
box-multiple
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100590" />
</frame>
<item id="100590" />
box-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100601" />
</frame>
<item id="100601" />
box-padding
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100602" />
</frame>
<item id="100602" />
box
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100576" />
</frame>
<item id="100576" />
braces-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100604" />
</frame>
<item id="100604" />
braces
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100603" />
</frame>
<item id="100603" />
brackets-angle-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100607" />
</frame>
<item id="100607" />
brackets-angle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100606" />
</frame>
<item id="100606" />
brackets-contain-end
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100609" />
</frame>
<item id="100609" />
brackets-contain-start
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100610" />
</frame>
<item id="100610" />
brackets-contain
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100608" />
</frame>
<item id="100608" />
brackets-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100611" />
</frame>
<item id="100611" />
brackets
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100605" />
</frame>
<item id="100605" />
braille
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100612" />
</frame>
<item id="100612" />
brain
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100613" />
</frame>
<item id="100613" />
brand-4chan
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100614" />
</frame>
<item id="100614" />
brand-abstract
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100615" />
</frame>
<item id="100615" />
brand-adobe-after-effect
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100617" />
</frame>
<item id="100617" />
brand-adobe-illustrator
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100618" />
</frame>
<item id="100618" />
brand-adobe-indesign
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100619" />
</frame>
<item id="100619" />
brand-adobe-photoshop
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100620" />
</frame>
<item id="100620" />
brand-adobe-premier
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100621" />
</frame>
<item id="100621" />
brand-adobe-xd
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100622" />
</frame>
<item id="100622" />
brand-adobe
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100616" />
</frame>
<item id="100616" />
brand-adonis-js
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100623" />
</frame>
<item id="100623" />
brand-airbnb
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100624" />
</frame>
<item id="100624" />
brand-airtable
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100625" />
</frame>
<item id="100625" />
brand-algolia
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100626" />
</frame>
<item id="100626" />
brand-alipay
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100627" />
</frame>
<item id="100627" />
brand-alpine-js
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100628" />
</frame>
<item id="100628" />
brand-amazon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100629" />
</frame>
<item id="100629" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 631-720 of 4964 SVG files.
Back to section index
brand-amd
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100630" />
</frame>
<item id="100630" />
brand-amie
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100631" />
</frame>
<item id="100631" />
brand-amigo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100632" />
</frame>
<item id="100632" />
brand-among-us
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100633" />
</frame>
<item id="100633" />
brand-android
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100634" />
</frame>
<item id="100634" />
brand-angular
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100635" />
</frame>
<item id="100635" />
brand-ansible
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100636" />
</frame>
<item id="100636" />
brand-ao3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100637" />
</frame>
<item id="100637" />
brand-appgallery
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100638" />
</frame>
<item id="100638" />
brand-apple-arcade
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100640" />
</frame>
<item id="100640" />
brand-apple-news
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100641" />
</frame>
<item id="100641" />
brand-apple-podcast
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100642" />
</frame>
<item id="100642" />
brand-apple
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100639" />
</frame>
<item id="100639" />
brand-appstore
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100643" />
</frame>
<item id="100643" />
brand-arc
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100644" />
</frame>
<item id="100644" />
brand-asana
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100645" />
</frame>
<item id="100645" />
brand-astro
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100646" />
</frame>
<item id="100646" />
brand-auth0
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100647" />
</frame>
<item id="100647" />
brand-aws
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100648" />
</frame>
<item id="100648" />
brand-azure
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100649" />
</frame>
<item id="100649" />
brand-backbone
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100650" />
</frame>
<item id="100650" />
brand-badoo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100651" />
</frame>
<item id="100651" />
brand-baidu
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100652" />
</frame>
<item id="100652" />
brand-bandcamp
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100653" />
</frame>
<item id="100653" />
brand-bandlab
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100654" />
</frame>
<item id="100654" />
brand-beats
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100655" />
</frame>
<item id="100655" />
brand-bebo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100656" />
</frame>
<item id="100656" />
brand-behance
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100657" />
</frame>
<item id="100657" />
brand-bilibili
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100658" />
</frame>
<item id="100658" />
brand-binance
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100659" />
</frame>
<item id="100659" />
brand-bing
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100660" />
</frame>
<item id="100660" />
brand-bitbucket
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100661" />
</frame>
<item id="100661" />
brand-blackberry
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100662" />
</frame>
<item id="100662" />
brand-blender
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100663" />
</frame>
<item id="100663" />
brand-blogger
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100664" />
</frame>
<item id="100664" />
brand-bluesky
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100665" />
</frame>
<item id="100665" />
brand-booking
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100666" />
</frame>
<item id="100666" />
brand-bootstrap
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100667" />
</frame>
<item id="100667" />
brand-bulma
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100668" />
</frame>
<item id="100668" />
brand-bumble
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100669" />
</frame>
<item id="100669" />
brand-bunpo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100670" />
</frame>
<item id="100670" />
brand-c-sharp
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100671" />
</frame>
<item id="100671" />
brand-cake
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100672" />
</frame>
<item id="100672" />
brand-cakephp
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100673" />
</frame>
<item id="100673" />
brand-campaignmonitor
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100674" />
</frame>
<item id="100674" />
brand-carbon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100675" />
</frame>
<item id="100675" />
brand-cashapp
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100676" />
</frame>
<item id="100676" />
brand-chrome
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100677" />
</frame>
<item id="100677" />
brand-cinema-4d
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100678" />
</frame>
<item id="100678" />
brand-citymapper
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100679" />
</frame>
<item id="100679" />
brand-cloudflare
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100680" />
</frame>
<item id="100680" />
brand-codecov
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100681" />
</frame>
<item id="100681" />
brand-codepen
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100682" />
</frame>
<item id="100682" />
brand-codesandbox
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100683" />
</frame>
<item id="100683" />
brand-cohost
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100684" />
</frame>
<item id="100684" />
brand-coinbase
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100685" />
</frame>
<item id="100685" />
brand-comedy-central
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100686" />
</frame>
<item id="100686" />
brand-coreos
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100687" />
</frame>
<item id="100687" />
brand-couchdb
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100688" />
</frame>
<item id="100688" />
brand-couchsurfing
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100689" />
</frame>
<item id="100689" />
brand-cpp
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100690" />
</frame>
<item id="100690" />
brand-craft
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100691" />
</frame>
<item id="100691" />
brand-crunchbase
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100692" />
</frame>
<item id="100692" />
brand-css3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100693" />
</frame>
<item id="100693" />
brand-ctemplar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100694" />
</frame>
<item id="100694" />
brand-cucumber
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100695" />
</frame>
<item id="100695" />
brand-cupra
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100696" />
</frame>
<item id="100696" />
brand-cypress
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100697" />
</frame>
<item id="100697" />
brand-d3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100698" />
</frame>
<item id="100698" />
brand-databricks
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100699" />
</frame>
<item id="100699" />
brand-days-counter
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100700" />
</frame>
<item id="100700" />
brand-dcos
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100701" />
</frame>
<item id="100701" />
brand-debian
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100702" />
</frame>
<item id="100702" />
brand-deezer
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100703" />
</frame>
<item id="100703" />
brand-deliveroo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100704" />
</frame>
<item id="100704" />
brand-deno
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100705" />
</frame>
<item id="100705" />
brand-denodo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100706" />
</frame>
<item id="100706" />
brand-deviantart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100707" />
</frame>
<item id="100707" />
brand-digg
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100708" />
</frame>
<item id="100708" />
brand-dingtalk
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100709" />
</frame>
<item id="100709" />
brand-discord
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100710" />
</frame>
<item id="100710" />
brand-disney
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100711" />
</frame>
<item id="100711" />
brand-disqus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100712" />
</frame>
<item id="100712" />
brand-django
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100713" />
</frame>
<item id="100713" />
brand-docker
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100714" />
</frame>
<item id="100714" />
brand-doctrine
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100715" />
</frame>
<item id="100715" />
brand-dolby-digital
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100716" />
</frame>
<item id="100716" />
brand-douban
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100717" />
</frame>
<item id="100717" />
brand-dribbble
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100718" />
</frame>
<item id="100718" />
brand-dropbox
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100719" />
</frame>
<item id="100719" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 721-810 of 4964 SVG files.
Back to section index
brand-drops
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100720" />
</frame>
<item id="100720" />
brand-drupal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100721" />
</frame>
<item id="100721" />
brand-edge
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100722" />
</frame>
<item id="100722" />
brand-elastic
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100723" />
</frame>
<item id="100723" />
brand-electronic-arts
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100724" />
</frame>
<item id="100724" />
brand-ember
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100725" />
</frame>
<item id="100725" />
brand-envato
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100726" />
</frame>
<item id="100726" />
brand-etsy
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100727" />
</frame>
<item id="100727" />
brand-evernote
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100728" />
</frame>
<item id="100728" />
brand-facebook
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100729" />
</frame>
<item id="100729" />
brand-feedly
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100730" />
</frame>
<item id="100730" />
brand-figma
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100731" />
</frame>
<item id="100731" />
brand-filezilla
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100732" />
</frame>
<item id="100732" />
brand-finder
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100733" />
</frame>
<item id="100733" />
brand-firebase
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100734" />
</frame>
<item id="100734" />
brand-firefox
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100735" />
</frame>
<item id="100735" />
brand-fiverr
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100736" />
</frame>
<item id="100736" />
brand-flickr
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100737" />
</frame>
<item id="100737" />
brand-flightradar24
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100738" />
</frame>
<item id="100738" />
brand-flipboard
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100739" />
</frame>
<item id="100739" />
brand-flutter
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100740" />
</frame>
<item id="100740" />
brand-fortnite
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100741" />
</frame>
<item id="100741" />
brand-foursquare
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100742" />
</frame>
<item id="100742" />
brand-framer-motion
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100744" />
</frame>
<item id="100744" />
brand-framer
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100743" />
</frame>
<item id="100743" />
brand-funimation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100745" />
</frame>
<item id="100745" />
brand-gatsby
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100746" />
</frame>
<item id="100746" />
brand-git
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100747" />
</frame>
<item id="100747" />
brand-github-copilot
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100749" />
</frame>
<item id="100749" />
brand-github
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100748" />
</frame>
<item id="100748" />
brand-gitlab
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100750" />
</frame>
<item id="100750" />
brand-gmail
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100751" />
</frame>
<item id="100751" />
brand-golang
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100752" />
</frame>
<item id="100752" />
brand-google-analytics
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100754" />
</frame>
<item id="100754" />
brand-google-big-query
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100755" />
</frame>
<item id="100755" />
brand-google-drive
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100756" />
</frame>
<item id="100756" />
brand-google-fit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100757" />
</frame>
<item id="100757" />
brand-google-home
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100758" />
</frame>
<item id="100758" />
brand-google-maps
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100759" />
</frame>
<item id="100759" />
brand-google-one
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100760" />
</frame>
<item id="100760" />
brand-google-photos
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100761" />
</frame>
<item id="100761" />
brand-google-play
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100762" />
</frame>
<item id="100762" />
brand-google-podcasts
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100763" />
</frame>
<item id="100763" />
brand-google
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100753" />
</frame>
<item id="100753" />
brand-grammarly
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100764" />
</frame>
<item id="100764" />
brand-graphql
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100765" />
</frame>
<item id="100765" />
brand-gravatar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100766" />
</frame>
<item id="100766" />
brand-grindr
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100767" />
</frame>
<item id="100767" />
brand-guardian
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100768" />
</frame>
<item id="100768" />
brand-gumroad
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100769" />
</frame>
<item id="100769" />
brand-hackerrank
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100770" />
</frame>
<item id="100770" />
brand-hbo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100771" />
</frame>
<item id="100771" />
brand-headlessui
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100772" />
</frame>
<item id="100772" />
brand-hexo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100773" />
</frame>
<item id="100773" />
brand-hipchat
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100774" />
</frame>
<item id="100774" />
brand-html5
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100775" />
</frame>
<item id="100775" />
brand-inertia
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100776" />
</frame>
<item id="100776" />
brand-instagram
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100777" />
</frame>
<item id="100777" />
brand-intercom
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100778" />
</frame>
<item id="100778" />
brand-itch
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100779" />
</frame>
<item id="100779" />
brand-javascript
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100780" />
</frame>
<item id="100780" />
brand-juejin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100781" />
</frame>
<item id="100781" />
brand-kako-talk
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100782" />
</frame>
<item id="100782" />
brand-kbin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100783" />
</frame>
<item id="100783" />
brand-kick
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100784" />
</frame>
<item id="100784" />
brand-kickstarter
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100785" />
</frame>
<item id="100785" />
brand-kotlin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100786" />
</frame>
<item id="100786" />
brand-laravel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100787" />
</frame>
<item id="100787" />
brand-lastfm
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100788" />
</frame>
<item id="100788" />
brand-leetcode
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100789" />
</frame>
<item id="100789" />
brand-letterboxd
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100790" />
</frame>
<item id="100790" />
brand-line
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100791" />
</frame>
<item id="100791" />
brand-linkedin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100792" />
</frame>
<item id="100792" />
brand-linktree
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100793" />
</frame>
<item id="100793" />
brand-linqpad
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100794" />
</frame>
<item id="100794" />
brand-livewire
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100795" />
</frame>
<item id="100795" />
brand-loom
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100796" />
</frame>
<item id="100796" />
brand-mailgun
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100797" />
</frame>
<item id="100797" />
brand-mantine
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100798" />
</frame>
<item id="100798" />
brand-mastercard
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100799" />
</frame>
<item id="100799" />
brand-mastodon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100800" />
</frame>
<item id="100800" />
brand-matrix
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100801" />
</frame>
<item id="100801" />
brand-mcdonalds
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100802" />
</frame>
<item id="100802" />
brand-medium
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100803" />
</frame>
<item id="100803" />
brand-meetup
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100804" />
</frame>
<item id="100804" />
brand-mercedes
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100805" />
</frame>
<item id="100805" />
brand-messenger
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100806" />
</frame>
<item id="100806" />
brand-meta
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100807" />
</frame>
<item id="100807" />
brand-metabrainz
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100808" />
</frame>
<item id="100808" />
brand-minecraft
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100809" />
</frame>
<item id="100809" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 811-900 of 4964 SVG files.
Back to section index
brand-miniprogram
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100810" />
</frame>
<item id="100810" />
brand-mixpanel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100811" />
</frame>
<item id="100811" />
brand-monday
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100812" />
</frame>
<item id="100812" />
brand-mongodb
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100813" />
</frame>
<item id="100813" />
brand-my-oppo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100814" />
</frame>
<item id="100814" />
brand-mysql
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100815" />
</frame>
<item id="100815" />
brand-national-geographic
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100816" />
</frame>
<item id="100816" />
brand-nem
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100817" />
</frame>
<item id="100817" />
brand-netbeans
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100818" />
</frame>
<item id="100818" />
brand-netease-music
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100819" />
</frame>
<item id="100819" />
brand-netflix
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100820" />
</frame>
<item id="100820" />
brand-nexo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100821" />
</frame>
<item id="100821" />
brand-nextcloud
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100822" />
</frame>
<item id="100822" />
brand-nextjs
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100823" />
</frame>
<item id="100823" />
brand-nodejs
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100824" />
</frame>
<item id="100824" />
brand-nord-vpn
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100825" />
</frame>
<item id="100825" />
brand-notion
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100826" />
</frame>
<item id="100826" />
brand-npm
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100827" />
</frame>
<item id="100827" />
brand-nuxt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100828" />
</frame>
<item id="100828" />
brand-nytimes
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100829" />
</frame>
<item id="100829" />
brand-oauth
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100830" />
</frame>
<item id="100830" />
brand-office
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100831" />
</frame>
<item id="100831" />
brand-ok-ru
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100832" />
</frame>
<item id="100832" />
brand-onedrive
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100833" />
</frame>
<item id="100833" />
brand-onlyfans
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100834" />
</frame>
<item id="100834" />
brand-open-source
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100835" />
</frame>
<item id="100835" />
brand-openai
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100836" />
</frame>
<item id="100836" />
brand-openvpn
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100837" />
</frame>
<item id="100837" />
brand-opera
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100838" />
</frame>
<item id="100838" />
brand-pagekit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100839" />
</frame>
<item id="100839" />
brand-parsinta
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100840" />
</frame>
<item id="100840" />
brand-patreon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100841" />
</frame>
<item id="100841" />
brand-paypal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100842" />
</frame>
<item id="100842" />
brand-paypay
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100843" />
</frame>
<item id="100843" />
brand-peanut
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100844" />
</frame>
<item id="100844" />
brand-pepsi
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100845" />
</frame>
<item id="100845" />
brand-php
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100846" />
</frame>
<item id="100846" />
brand-picsart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100847" />
</frame>
<item id="100847" />
brand-pinterest
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100848" />
</frame>
<item id="100848" />
brand-planetscale
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100849" />
</frame>
<item id="100849" />
brand-pnpm
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100850" />
</frame>
<item id="100850" />
brand-pocket
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100851" />
</frame>
<item id="100851" />
brand-polymer
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100852" />
</frame>
<item id="100852" />
brand-powershell
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100853" />
</frame>
<item id="100853" />
brand-printables
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100854" />
</frame>
<item id="100854" />
brand-prisma
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100855" />
</frame>
<item id="100855" />
brand-producthunt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100856" />
</frame>
<item id="100856" />
brand-pushbullet
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100857" />
</frame>
<item id="100857" />
brand-pushover
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100858" />
</frame>
<item id="100858" />
brand-python
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100859" />
</frame>
<item id="100859" />
brand-qq
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100860" />
</frame>
<item id="100860" />
brand-radix-ui
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100861" />
</frame>
<item id="100861" />
brand-react-native
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100863" />
</frame>
<item id="100863" />
brand-react
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100862" />
</frame>
<item id="100862" />
brand-reason
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100864" />
</frame>
<item id="100864" />
brand-reddit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100865" />
</frame>
<item id="100865" />
brand-redhat
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100866" />
</frame>
<item id="100866" />
brand-redux
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100867" />
</frame>
<item id="100867" />
brand-revolut
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100868" />
</frame>
<item id="100868" />
brand-rumble
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100869" />
</frame>
<item id="100869" />
brand-rust
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100870" />
</frame>
<item id="100870" />
brand-safari
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100871" />
</frame>
<item id="100871" />
brand-samsungpass
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100872" />
</frame>
<item id="100872" />
brand-sass
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100873" />
</frame>
<item id="100873" />
brand-sentry
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100874" />
</frame>
<item id="100874" />
brand-sharik
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100875" />
</frame>
<item id="100875" />
brand-shazam
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100876" />
</frame>
<item id="100876" />
brand-shopee
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100877" />
</frame>
<item id="100877" />
brand-sketch
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100878" />
</frame>
<item id="100878" />
brand-skype
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100879" />
</frame>
<item id="100879" />
brand-slack
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100880" />
</frame>
<item id="100880" />
brand-snapchat
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100881" />
</frame>
<item id="100881" />
brand-snapseed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100882" />
</frame>
<item id="100882" />
brand-snowflake
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100883" />
</frame>
<item id="100883" />
brand-socket-io
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100884" />
</frame>
<item id="100884" />
brand-solidjs
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100885" />
</frame>
<item id="100885" />
brand-soundcloud
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100886" />
</frame>
<item id="100886" />
brand-spacehey
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100887" />
</frame>
<item id="100887" />
brand-speedtest
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100888" />
</frame>
<item id="100888" />
brand-spotify
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100889" />
</frame>
<item id="100889" />
brand-stackoverflow
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100890" />
</frame>
<item id="100890" />
brand-stackshare
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100891" />
</frame>
<item id="100891" />
brand-steam
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100892" />
</frame>
<item id="100892" />
brand-stocktwits
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100893" />
</frame>
<item id="100893" />
brand-storj
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100894" />
</frame>
<item id="100894" />
brand-storybook
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100895" />
</frame>
<item id="100895" />
brand-storytel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100896" />
</frame>
<item id="100896" />
brand-strava
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100897" />
</frame>
<item id="100897" />
brand-stripe
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100898" />
</frame>
<item id="100898" />
brand-sublime-text
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100899" />
</frame>
<item id="100899" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 901-990 of 4964 SVG files.
Back to section index
brand-sugarizer
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100900" />
</frame>
<item id="100900" />
brand-supabase
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100901" />
</frame>
<item id="100901" />
brand-superhuman
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100902" />
</frame>
<item id="100902" />
brand-supernova
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100903" />
</frame>
<item id="100903" />
brand-surfshark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100904" />
</frame>
<item id="100904" />
brand-svelte
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100905" />
</frame>
<item id="100905" />
brand-swift
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100906" />
</frame>
<item id="100906" />
brand-symfony
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100907" />
</frame>
<item id="100907" />
brand-tabler
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100908" />
</frame>
<item id="100908" />
brand-tailwind
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100909" />
</frame>
<item id="100909" />
brand-taobao
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100910" />
</frame>
<item id="100910" />
brand-teams
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100911" />
</frame>
<item id="100911" />
brand-ted
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100912" />
</frame>
<item id="100912" />
brand-telegram
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100913" />
</frame>
<item id="100913" />
brand-terraform
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100914" />
</frame>
<item id="100914" />
brand-tesla
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100915" />
</frame>
<item id="100915" />
brand-tether
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100916" />
</frame>
<item id="100916" />
brand-thingiverse
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100917" />
</frame>
<item id="100917" />
brand-threads
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100918" />
</frame>
<item id="100918" />
brand-threejs
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100919" />
</frame>
<item id="100919" />
brand-tidal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100920" />
</frame>
<item id="100920" />
brand-tiktok
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100921" />
</frame>
<item id="100921" />
brand-tinder
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100922" />
</frame>
<item id="100922" />
brand-topbuzz
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100923" />
</frame>
<item id="100923" />
brand-torchain
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100924" />
</frame>
<item id="100924" />
brand-toyota
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100925" />
</frame>
<item id="100925" />
brand-trello
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100926" />
</frame>
<item id="100926" />
brand-tripadvisor
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100927" />
</frame>
<item id="100927" />
brand-tumblr
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100928" />
</frame>
<item id="100928" />
brand-twilio
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100929" />
</frame>
<item id="100929" />
brand-twitch
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100930" />
</frame>
<item id="100930" />
brand-twitter
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100931" />
</frame>
<item id="100931" />
brand-typescript
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100932" />
</frame>
<item id="100932" />
brand-uber
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100933" />
</frame>
<item id="100933" />
brand-ubuntu
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100934" />
</frame>
<item id="100934" />
brand-unity
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100935" />
</frame>
<item id="100935" />
brand-unsplash
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100936" />
</frame>
<item id="100936" />
brand-upwork
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100937" />
</frame>
<item id="100937" />
brand-valorant
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100938" />
</frame>
<item id="100938" />
brand-vercel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100939" />
</frame>
<item id="100939" />
brand-vimeo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100940" />
</frame>
<item id="100940" />
brand-vinted
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100941" />
</frame>
<item id="100941" />
brand-visa
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100942" />
</frame>
<item id="100942" />
brand-visual-studio
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100943" />
</frame>
<item id="100943" />
brand-vite
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100944" />
</frame>
<item id="100944" />
brand-vivaldi
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100945" />
</frame>
<item id="100945" />
brand-vk
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100946" />
</frame>
<item id="100946" />
brand-vlc
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100947" />
</frame>
<item id="100947" />
brand-volkswagen
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100948" />
</frame>
<item id="100948" />
brand-vsco
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100949" />
</frame>
<item id="100949" />
brand-vscode
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100950" />
</frame>
<item id="100950" />
brand-vue
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100951" />
</frame>
<item id="100951" />
brand-walmart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100952" />
</frame>
<item id="100952" />
brand-waze
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100953" />
</frame>
<item id="100953" />
brand-webflow
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100954" />
</frame>
<item id="100954" />
brand-wechat
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100955" />
</frame>
<item id="100955" />
brand-weibo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100956" />
</frame>
<item id="100956" />
brand-whatsapp
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100957" />
</frame>
<item id="100957" />
brand-wikipedia
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100958" />
</frame>
<item id="100958" />
brand-windows
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100959" />
</frame>
<item id="100959" />
brand-windy
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100960" />
</frame>
<item id="100960" />
brand-wish
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100961" />
</frame>
<item id="100961" />
brand-wix
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100962" />
</frame>
<item id="100962" />
brand-wordpress
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100963" />
</frame>
<item id="100963" />
brand-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100964" />
</frame>
<item id="100964" />
brand-xamarin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100965" />
</frame>
<item id="100965" />
brand-xbox
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100966" />
</frame>
<item id="100966" />
brand-xdeep
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100967" />
</frame>
<item id="100967" />
brand-xing
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100968" />
</frame>
<item id="100968" />
brand-yahoo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100969" />
</frame>
<item id="100969" />
brand-yandex
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100970" />
</frame>
<item id="100970" />
brand-yarn
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100971" />
</frame>
<item id="100971" />
brand-yatse
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100972" />
</frame>
<item id="100972" />
brand-ycombinator
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100973" />
</frame>
<item id="100973" />
brand-youtube-kids
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100975" />
</frame>
<item id="100975" />
brand-youtube
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100974" />
</frame>
<item id="100974" />
brand-zalando
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100976" />
</frame>
<item id="100976" />
brand-zapier
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100977" />
</frame>
<item id="100977" />
brand-zeit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100978" />
</frame>
<item id="100978" />
brand-zhihu
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100979" />
</frame>
<item id="100979" />
brand-zoom
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100980" />
</frame>
<item id="100980" />
brand-zulip
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100981" />
</frame>
<item id="100981" />
brand-zwift
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100982" />
</frame>
<item id="100982" />
bread-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100984" />
</frame>
<item id="100984" />
bread
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100983" />
</frame>
<item id="100983" />
briefcase-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100986" />
</frame>
<item id="100986" />
briefcase-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100987" />
</frame>
<item id="100987" />
briefcase
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100985" />
</frame>
<item id="100985" />
brightness-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100989" />
</frame>
<item id="100989" />
brightness-auto
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100990" />
</frame>
<item id="100990" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 991-1080 of 4964 SVG files.
Back to section index
brightness-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100991" />
</frame>
<item id="100991" />
brightness-half
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100992" />
</frame>
<item id="100992" />
brightness-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100993" />
</frame>
<item id="100993" />
brightness-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100994" />
</frame>
<item id="100994" />
brightness
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100988" />
</frame>
<item id="100988" />
broadcast-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100996" />
</frame>
<item id="100996" />
broadcast
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100995" />
</frame>
<item id="100995" />
browser-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100998" />
</frame>
<item id="100998" />
browser-maximize
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100999" />
</frame>
<item id="100999" />
browser-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101000" />
</frame>
<item id="101000" />
browser-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101001" />
</frame>
<item id="101001" />
browser-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101002" />
</frame>
<item id="101002" />
browser-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101003" />
</frame>
<item id="101003" />
browser-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101004" />
</frame>
<item id="101004" />
browser
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="100997" />
</frame>
<item id="100997" />
brush-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101006" />
</frame>
<item id="101006" />
brush
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101005" />
</frame>
<item id="101005" />
bubble-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101008" />
</frame>
<item id="101008" />
bubble-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101009" />
</frame>
<item id="101009" />
bubble-tea-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101011" />
</frame>
<item id="101011" />
bubble-tea
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101010" />
</frame>
<item id="101010" />
bubble-text
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101012" />
</frame>
<item id="101012" />
bubble-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101013" />
</frame>
<item id="101013" />
bubble
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101007" />
</frame>
<item id="101007" />
bucket-droplet
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101015" />
</frame>
<item id="101015" />
bucket-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101016" />
</frame>
<item id="101016" />
bucket
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101014" />
</frame>
<item id="101014" />
bug-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101018" />
</frame>
<item id="101018" />
bug
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101017" />
</frame>
<item id="101017" />
building-airport
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101020" />
</frame>
<item id="101020" />
building-arch
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101021" />
</frame>
<item id="101021" />
building-bank
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101022" />
</frame>
<item id="101022" />
building-bridge-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101024" />
</frame>
<item id="101024" />
building-bridge
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101023" />
</frame>
<item id="101023" />
building-broadcast-tower
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101025" />
</frame>
<item id="101025" />
building-burj-al-arab
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101026" />
</frame>
<item id="101026" />
building-carousel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101027" />
</frame>
<item id="101027" />
building-castle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101028" />
</frame>
<item id="101028" />
building-church
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101029" />
</frame>
<item id="101029" />
building-circus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101030" />
</frame>
<item id="101030" />
building-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101031" />
</frame>
<item id="101031" />
building-community
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101032" />
</frame>
<item id="101032" />
building-cottage
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101033" />
</frame>
<item id="101033" />
building-estate
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101034" />
</frame>
<item id="101034" />
building-factory-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101036" />
</frame>
<item id="101036" />
building-factory
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101035" />
</frame>
<item id="101035" />
building-fortress
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101037" />
</frame>
<item id="101037" />
building-hospital
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101038" />
</frame>
<item id="101038" />
building-lighthouse
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101039" />
</frame>
<item id="101039" />
building-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101040" />
</frame>
<item id="101040" />
building-monument
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101041" />
</frame>
<item id="101041" />
building-mosque
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101042" />
</frame>
<item id="101042" />
building-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101043" />
</frame>
<item id="101043" />
building-pavilion
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101044" />
</frame>
<item id="101044" />
building-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101045" />
</frame>
<item id="101045" />
building-skyscraper
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101046" />
</frame>
<item id="101046" />
building-stadium
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101047" />
</frame>
<item id="101047" />
building-store
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101048" />
</frame>
<item id="101048" />
building-tunnel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101049" />
</frame>
<item id="101049" />
building-warehouse
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101050" />
</frame>
<item id="101050" />
building-wind-turbine
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101051" />
</frame>
<item id="101051" />
building
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101019" />
</frame>
<item id="101019" />
buildings
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101052" />
</frame>
<item id="101052" />
bulb-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101054" />
</frame>
<item id="101054" />
bulb
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101053" />
</frame>
<item id="101053" />
bulldozer
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101055" />
</frame>
<item id="101055" />
burger
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101056" />
</frame>
<item id="101056" />
bus-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101058" />
</frame>
<item id="101058" />
bus-stop
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101059" />
</frame>
<item id="101059" />
bus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101057" />
</frame>
<item id="101057" />
businessplan
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101060" />
</frame>
<item id="101060" />
butterfly
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101061" />
</frame>
<item id="101061" />
cactus-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101063" />
</frame>
<item id="101063" />
cactus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101062" />
</frame>
<item id="101062" />
cake-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101065" />
</frame>
<item id="101065" />
cake-roll
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101066" />
</frame>
<item id="101066" />
cake
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101064" />
</frame>
<item id="101064" />
calculator-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101068" />
</frame>
<item id="101068" />
calculator
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101067" />
</frame>
<item id="101067" />
calendar-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101070" />
</frame>
<item id="101070" />
calendar-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101071" />
</frame>
<item id="101071" />
calendar-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101072" />
</frame>
<item id="101072" />
calendar-clock
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101073" />
</frame>
<item id="101073" />
calendar-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101074" />
</frame>
<item id="101074" />
calendar-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101075" />
</frame>
<item id="101075" />
calendar-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101076" />
</frame>
<item id="101076" />
calendar-dot
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101077" />
</frame>
<item id="101077" />
calendar-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101078" />
</frame>
<item id="101078" />
calendar-due
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101079" />
</frame>
<item id="101079" />
calendar-event
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101080" />
</frame>
<item id="101080" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 1081-1170 of 4964 SVG files.
Back to section index
calendar-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101081" />
</frame>
<item id="101081" />
calendar-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101082" />
</frame>
<item id="101082" />
calendar-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101083" />
</frame>
<item id="101083" />
calendar-month
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101084" />
</frame>
<item id="101084" />
calendar-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101085" />
</frame>
<item id="101085" />
calendar-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101086" />
</frame>
<item id="101086" />
calendar-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101087" />
</frame>
<item id="101087" />
calendar-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101088" />
</frame>
<item id="101088" />
calendar-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101089" />
</frame>
<item id="101089" />
calendar-repeat
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101090" />
</frame>
<item id="101090" />
calendar-sad
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101091" />
</frame>
<item id="101091" />
calendar-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101092" />
</frame>
<item id="101092" />
calendar-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101093" />
</frame>
<item id="101093" />
calendar-smile
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101094" />
</frame>
<item id="101094" />
calendar-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101095" />
</frame>
<item id="101095" />
calendar-stats
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101096" />
</frame>
<item id="101096" />
calendar-time
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101097" />
</frame>
<item id="101097" />
calendar-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101098" />
</frame>
<item id="101098" />
calendar-user
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101099" />
</frame>
<item id="101099" />
calendar-week
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101100" />
</frame>
<item id="101100" />
calendar-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101101" />
</frame>
<item id="101101" />
calendar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101069" />
</frame>
<item id="101069" />
camera-ai
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101103" />
</frame>
<item id="101103" />
camera-bitcoin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101104" />
</frame>
<item id="101104" />
camera-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101105" />
</frame>
<item id="101105" />
camera-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101106" />
</frame>
<item id="101106" />
camera-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101107" />
</frame>
<item id="101107" />
camera-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101108" />
</frame>
<item id="101108" />
camera-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101109" />
</frame>
<item id="101109" />
camera-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101110" />
</frame>
<item id="101110" />
camera-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101111" />
</frame>
<item id="101111" />
camera-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101112" />
</frame>
<item id="101112" />
camera-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101113" />
</frame>
<item id="101113" />
camera-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101114" />
</frame>
<item id="101114" />
camera-moon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101115" />
</frame>
<item id="101115" />
camera-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101116" />
</frame>
<item id="101116" />
camera-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101117" />
</frame>
<item id="101117" />
camera-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101118" />
</frame>
<item id="101118" />
camera-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101119" />
</frame>
<item id="101119" />
camera-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101120" />
</frame>
<item id="101120" />
camera-rotate
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101121" />
</frame>
<item id="101121" />
camera-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101122" />
</frame>
<item id="101122" />
camera-selfie
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101123" />
</frame>
<item id="101123" />
camera-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101124" />
</frame>
<item id="101124" />
camera-spark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101125" />
</frame>
<item id="101125" />
camera-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101126" />
</frame>
<item id="101126" />
camera-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101127" />
</frame>
<item id="101127" />
camera-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101128" />
</frame>
<item id="101128" />
camera
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101102" />
</frame>
<item id="101102" />
camper
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101129" />
</frame>
<item id="101129" />
campfire
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101130" />
</frame>
<item id="101130" />
cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101131" />
</frame>
<item id="101131" />
candle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101132" />
</frame>
<item id="101132" />
candy-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101134" />
</frame>
<item id="101134" />
candy
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101133" />
</frame>
<item id="101133" />
cane
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101135" />
</frame>
<item id="101135" />
cannabis
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101136" />
</frame>
<item id="101136" />
cap-projecting
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101137" />
</frame>
<item id="101137" />
cap-rounded
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101138" />
</frame>
<item id="101138" />
cap-straight
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101139" />
</frame>
<item id="101139" />
capsule-horizontal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101141" />
</frame>
<item id="101141" />
capsule
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101140" />
</frame>
<item id="101140" />
capture-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101143" />
</frame>
<item id="101143" />
capture
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101142" />
</frame>
<item id="101142" />
car-4wd
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101145" />
</frame>
<item id="101145" />
car-crane
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101146" />
</frame>
<item id="101146" />
car-crash
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101147" />
</frame>
<item id="101147" />
car-fan-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101149" />
</frame>
<item id="101149" />
car-fan-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101150" />
</frame>
<item id="101150" />
car-fan-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101151" />
</frame>
<item id="101151" />
car-fan-auto
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101152" />
</frame>
<item id="101152" />
car-fan
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101148" />
</frame>
<item id="101148" />
car-garage
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101153" />
</frame>
<item id="101153" />
car-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101154" />
</frame>
<item id="101154" />
car-suv
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101155" />
</frame>
<item id="101155" />
car-turbine
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101156" />
</frame>
<item id="101156" />
car
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101144" />
</frame>
<item id="101144" />
carambola
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101157" />
</frame>
<item id="101157" />
caravan
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101158" />
</frame>
<item id="101158" />
cardboards-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101160" />
</frame>
<item id="101160" />
cardboards
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101159" />
</frame>
<item id="101159" />
cards
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101161" />
</frame>
<item id="101161" />
caret-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101162" />
</frame>
<item id="101162" />
caret-left-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101164" />
</frame>
<item id="101164" />
caret-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101163" />
</frame>
<item id="101163" />
caret-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101165" />
</frame>
<item id="101165" />
caret-up-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101167" />
</frame>
<item id="101167" />
caret-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101166" />
</frame>
<item id="101166" />
carousel-horizontal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101168" />
</frame>
<item id="101168" />
carousel-vertical
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101169" />
</frame>
<item id="101169" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 1171-1260 of 4964 SVG files.
Back to section index
carrot-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101171" />
</frame>
<item id="101171" />
carrot
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101170" />
</frame>
<item id="101170" />
cash-banknote-edit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101174" />
</frame>
<item id="101174" />
cash-banknote-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101175" />
</frame>
<item id="101175" />
cash-banknote-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101176" />
</frame>
<item id="101176" />
cash-banknote-move-back
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101178" />
</frame>
<item id="101178" />
cash-banknote-move
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101177" />
</frame>
<item id="101177" />
cash-banknote-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101179" />
</frame>
<item id="101179" />
cash-banknote-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101180" />
</frame>
<item id="101180" />
cash-banknote
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101173" />
</frame>
<item id="101173" />
cash-edit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101181" />
</frame>
<item id="101181" />
cash-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101182" />
</frame>
<item id="101182" />
cash-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101183" />
</frame>
<item id="101183" />
cash-move-back
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101185" />
</frame>
<item id="101185" />
cash-move
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101184" />
</frame>
<item id="101184" />
cash-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101186" />
</frame>
<item id="101186" />
cash-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101187" />
</frame>
<item id="101187" />
cash-register
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101188" />
</frame>
<item id="101188" />
cash
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101172" />
</frame>
<item id="101172" />
cast-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101190" />
</frame>
<item id="101190" />
cast
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101189" />
</frame>
<item id="101189" />
cat
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101191" />
</frame>
<item id="101191" />
category-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101193" />
</frame>
<item id="101193" />
category-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101194" />
</frame>
<item id="101194" />
category-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101195" />
</frame>
<item id="101195" />
category
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101192" />
</frame>
<item id="101192" />
ce-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101197" />
</frame>
<item id="101197" />
ce
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101196" />
</frame>
<item id="101196" />
cell-signal-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101199" />
</frame>
<item id="101199" />
cell-signal-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101200" />
</frame>
<item id="101200" />
cell-signal-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101201" />
</frame>
<item id="101201" />
cell-signal-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101202" />
</frame>
<item id="101202" />
cell-signal-5
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101203" />
</frame>
<item id="101203" />
cell-signal-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101204" />
</frame>
<item id="101204" />
cell
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101198" />
</frame>
<item id="101198" />
certificate-2-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101207" />
</frame>
<item id="101207" />
certificate-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101206" />
</frame>
<item id="101206" />
certificate-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101208" />
</frame>
<item id="101208" />
certificate
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101205" />
</frame>
<item id="101205" />
chair-director
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101209" />
</frame>
<item id="101209" />
chalkboard-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101211" />
</frame>
<item id="101211" />
chalkboard-teacher
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101212" />
</frame>
<item id="101212" />
chalkboard
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101210" />
</frame>
<item id="101210" />
charging-pile
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101213" />
</frame>
<item id="101213" />
chart-arcs-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101215" />
</frame>
<item id="101215" />
chart-arcs
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101214" />
</frame>
<item id="101214" />
chart-area-line
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101217" />
</frame>
<item id="101217" />
chart-area
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101216" />
</frame>
<item id="101216" />
chart-arrows-vertical
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101219" />
</frame>
<item id="101219" />
chart-arrows
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101218" />
</frame>
<item id="101218" />
chart-bar-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101221" />
</frame>
<item id="101221" />
chart-bar-popular
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101222" />
</frame>
<item id="101222" />
chart-bar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101220" />
</frame>
<item id="101220" />
chart-bubble
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101223" />
</frame>
<item id="101223" />
chart-candle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101224" />
</frame>
<item id="101224" />
chart-circles
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101225" />
</frame>
<item id="101225" />
chart-cohort
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101226" />
</frame>
<item id="101226" />
chart-column
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101227" />
</frame>
<item id="101227" />
chart-covariate
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101228" />
</frame>
<item id="101228" />
chart-donut-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101230" />
</frame>
<item id="101230" />
chart-donut-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101231" />
</frame>
<item id="101231" />
chart-donut-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101232" />
</frame>
<item id="101232" />
chart-donut
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101229" />
</frame>
<item id="101229" />
chart-dots-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101234" />
</frame>
<item id="101234" />
chart-dots-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101235" />
</frame>
<item id="101235" />
chart-dots
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101233" />
</frame>
<item id="101233" />
chart-funnel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101236" />
</frame>
<item id="101236" />
chart-grid-dots
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101237" />
</frame>
<item id="101237" />
chart-histogram
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101238" />
</frame>
<item id="101238" />
chart-infographic
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101239" />
</frame>
<item id="101239" />
chart-line
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101240" />
</frame>
<item id="101240" />
chart-pie-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101242" />
</frame>
<item id="101242" />
chart-pie-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101243" />
</frame>
<item id="101243" />
chart-pie-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101244" />
</frame>
<item id="101244" />
chart-pie-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101245" />
</frame>
<item id="101245" />
chart-pie
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101241" />
</frame>
<item id="101241" />
chart-ppf
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101246" />
</frame>
<item id="101246" />
chart-radar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101247" />
</frame>
<item id="101247" />
chart-sankey
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101248" />
</frame>
<item id="101248" />
chart-scatter-3d
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101250" />
</frame>
<item id="101250" />
chart-scatter
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101249" />
</frame>
<item id="101249" />
chart-treemap
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101251" />
</frame>
<item id="101251" />
check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101252" />
</frame>
<item id="101252" />
checkbox
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101253" />
</frame>
<item id="101253" />
checklist
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101254" />
</frame>
<item id="101254" />
checks
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101255" />
</frame>
<item id="101255" />
checkup-list
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101256" />
</frame>
<item id="101256" />
cheese
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101257" />
</frame>
<item id="101257" />
chef-hat-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101259" />
</frame>
<item id="101259" />
chef-hat
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101258" />
</frame>
<item id="101258" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 1261-1350 of 4964 SVG files.
Back to section index
cherry
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101260" />
</frame>
<item id="101260" />
chess-bishop
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101262" />
</frame>
<item id="101262" />
chess-king
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101263" />
</frame>
<item id="101263" />
chess-knight
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101264" />
</frame>
<item id="101264" />
chess-queen
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101265" />
</frame>
<item id="101265" />
chess-rook
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101266" />
</frame>
<item id="101266" />
chess
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101261" />
</frame>
<item id="101261" />
chevron-compact-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101267" />
</frame>
<item id="101267" />
chevron-compact-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101268" />
</frame>
<item id="101268" />
chevron-compact-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101269" />
</frame>
<item id="101269" />
chevron-compact-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101270" />
</frame>
<item id="101270" />
chevron-down-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101272" />
</frame>
<item id="101272" />
chevron-down-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101273" />
</frame>
<item id="101273" />
chevron-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101271" />
</frame>
<item id="101271" />
chevron-left-pipe
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101275" />
</frame>
<item id="101275" />
chevron-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101274" />
</frame>
<item id="101274" />
chevron-right-pipe
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101277" />
</frame>
<item id="101277" />
chevron-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101276" />
</frame>
<item id="101276" />
chevron-up-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101279" />
</frame>
<item id="101279" />
chevron-up-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101280" />
</frame>
<item id="101280" />
chevron-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101278" />
</frame>
<item id="101278" />
chevrons-down-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101282" />
</frame>
<item id="101282" />
chevrons-down-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101283" />
</frame>
<item id="101283" />
chevrons-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101281" />
</frame>
<item id="101281" />
chevrons-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101284" />
</frame>
<item id="101284" />
chevrons-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101285" />
</frame>
<item id="101285" />
chevrons-up-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101287" />
</frame>
<item id="101287" />
chevrons-up-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101288" />
</frame>
<item id="101288" />
chevrons-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101286" />
</frame>
<item id="101286" />
chisel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101289" />
</frame>
<item id="101289" />
christmas-ball
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101290" />
</frame>
<item id="101290" />
christmas-tree-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101292" />
</frame>
<item id="101292" />
christmas-tree
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101291" />
</frame>
<item id="101291" />
circle-arrow-down-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101295" />
</frame>
<item id="101295" />
circle-arrow-down-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101296" />
</frame>
<item id="101296" />
circle-arrow-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101294" />
</frame>
<item id="101294" />
circle-arrow-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101297" />
</frame>
<item id="101297" />
circle-arrow-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101298" />
</frame>
<item id="101298" />
circle-arrow-up-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101300" />
</frame>
<item id="101300" />
circle-arrow-up-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101301" />
</frame>
<item id="101301" />
circle-arrow-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101299" />
</frame>
<item id="101299" />
circle-caret-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101302" />
</frame>
<item id="101302" />
circle-caret-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101303" />
</frame>
<item id="101303" />
circle-caret-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101304" />
</frame>
<item id="101304" />
circle-caret-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101305" />
</frame>
<item id="101305" />
circle-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101306" />
</frame>
<item id="101306" />
circle-chevron-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101307" />
</frame>
<item id="101307" />
circle-chevron-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101308" />
</frame>
<item id="101308" />
circle-chevron-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101309" />
</frame>
<item id="101309" />
circle-chevron-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101310" />
</frame>
<item id="101310" />
circle-chevrons-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101311" />
</frame>
<item id="101311" />
circle-chevrons-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101312" />
</frame>
<item id="101312" />
circle-chevrons-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101313" />
</frame>
<item id="101313" />
circle-chevrons-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101314" />
</frame>
<item id="101314" />
circle-dashed-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101316" />
</frame>
<item id="101316" />
circle-dashed-letter-a
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101317" />
</frame>
<item id="101317" />
circle-dashed-letter-b
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101318" />
</frame>
<item id="101318" />
circle-dashed-letter-c
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101319" />
</frame>
<item id="101319" />
circle-dashed-letter-d
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101320" />
</frame>
<item id="101320" />
circle-dashed-letter-e
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101321" />
</frame>
<item id="101321" />
circle-dashed-letter-f
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101322" />
</frame>
<item id="101322" />
circle-dashed-letter-g
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101323" />
</frame>
<item id="101323" />
circle-dashed-letter-h
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101324" />
</frame>
<item id="101324" />
circle-dashed-letter-i
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101325" />
</frame>
<item id="101325" />
circle-dashed-letter-j
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101326" />
</frame>
<item id="101326" />
circle-dashed-letter-k
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101327" />
</frame>
<item id="101327" />
circle-dashed-letter-l
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101328" />
</frame>
<item id="101328" />
circle-dashed-letter-m
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101329" />
</frame>
<item id="101329" />
circle-dashed-letter-n
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101330" />
</frame>
<item id="101330" />
circle-dashed-letter-o
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101331" />
</frame>
<item id="101331" />
circle-dashed-letter-p
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101332" />
</frame>
<item id="101332" />
circle-dashed-letter-q
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101333" />
</frame>
<item id="101333" />
circle-dashed-letter-r
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101334" />
</frame>
<item id="101334" />
circle-dashed-letter-s
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101335" />
</frame>
<item id="101335" />
circle-dashed-letter-t
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101336" />
</frame>
<item id="101336" />
circle-dashed-letter-u
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101337" />
</frame>
<item id="101337" />
circle-dashed-letter-v
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101338" />
</frame>
<item id="101338" />
circle-dashed-letter-w
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101339" />
</frame>
<item id="101339" />
circle-dashed-letter-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101340" />
</frame>
<item id="101340" />
circle-dashed-letter-y
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101341" />
</frame>
<item id="101341" />
circle-dashed-letter-z
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101342" />
</frame>
<item id="101342" />
circle-dashed-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101343" />
</frame>
<item id="101343" />
circle-dashed-number-0
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101344" />
</frame>
<item id="101344" />
circle-dashed-number-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101345" />
</frame>
<item id="101345" />
circle-dashed-number-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101346" />
</frame>
<item id="101346" />
circle-dashed-number-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101347" />
</frame>
<item id="101347" />
circle-dashed-number-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101348" />
</frame>
<item id="101348" />
circle-dashed-number-5
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101349" />
</frame>
<item id="101349" />
circle-dashed-number-6
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101350" />
</frame>
<item id="101350" />
circle-dashed-number-7
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101351" />
</frame>
<item id="101351" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 1351-1440 of 4964 SVG files.
Back to section index
circle-dashed-number-8
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101352" />
</frame>
<item id="101352" />
circle-dashed-number-9
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101353" />
</frame>
<item id="101353" />
circle-dashed-percentage
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101354" />
</frame>
<item id="101354" />
circle-dashed-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101355" />
</frame>
<item id="101355" />
circle-dashed-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101356" />
</frame>
<item id="101356" />
circle-dashed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101315" />
</frame>
<item id="101315" />
circle-dot
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101357" />
</frame>
<item id="101357" />
circle-dotted-letter-a
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101359" />
</frame>
<item id="101359" />
circle-dotted-letter-b
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101360" />
</frame>
<item id="101360" />
circle-dotted-letter-c
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101361" />
</frame>
<item id="101361" />
circle-dotted-letter-d
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101362" />
</frame>
<item id="101362" />
circle-dotted-letter-e
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101363" />
</frame>
<item id="101363" />
circle-dotted-letter-f
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101364" />
</frame>
<item id="101364" />
circle-dotted-letter-g
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101365" />
</frame>
<item id="101365" />
circle-dotted-letter-h
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101366" />
</frame>
<item id="101366" />
circle-dotted-letter-i
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101367" />
</frame>
<item id="101367" />
circle-dotted-letter-j
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101368" />
</frame>
<item id="101368" />
circle-dotted-letter-k
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101369" />
</frame>
<item id="101369" />
circle-dotted-letter-l
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101370" />
</frame>
<item id="101370" />
circle-dotted-letter-m
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101371" />
</frame>
<item id="101371" />
circle-dotted-letter-n
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101372" />
</frame>
<item id="101372" />
circle-dotted-letter-o
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101373" />
</frame>
<item id="101373" />
circle-dotted-letter-p
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101374" />
</frame>
<item id="101374" />
circle-dotted-letter-q
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101375" />
</frame>
<item id="101375" />
circle-dotted-letter-r
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101376" />
</frame>
<item id="101376" />
circle-dotted-letter-s
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101377" />
</frame>
<item id="101377" />
circle-dotted-letter-t
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101378" />
</frame>
<item id="101378" />
circle-dotted-letter-u
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101379" />
</frame>
<item id="101379" />
circle-dotted-letter-v
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101380" />
</frame>
<item id="101380" />
circle-dotted-letter-w
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101381" />
</frame>
<item id="101381" />
circle-dotted-letter-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101382" />
</frame>
<item id="101382" />
circle-dotted-letter-y
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101383" />
</frame>
<item id="101383" />
circle-dotted-letter-z
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101384" />
</frame>
<item id="101384" />
circle-dotted
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101358" />
</frame>
<item id="101358" />
circle-half-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101386" />
</frame>
<item id="101386" />
circle-half-vertical
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101387" />
</frame>
<item id="101387" />
circle-half
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101385" />
</frame>
<item id="101385" />
circle-key
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101388" />
</frame>
<item id="101388" />
circle-letter-a
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101389" />
</frame>
<item id="101389" />
circle-letter-b
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101390" />
</frame>
<item id="101390" />
circle-letter-c
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101391" />
</frame>
<item id="101391" />
circle-letter-d
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101392" />
</frame>
<item id="101392" />
circle-letter-e
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101393" />
</frame>
<item id="101393" />
circle-letter-f
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101394" />
</frame>
<item id="101394" />
circle-letter-g
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101395" />
</frame>
<item id="101395" />
circle-letter-h
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101396" />
</frame>
<item id="101396" />
circle-letter-i
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101397" />
</frame>
<item id="101397" />
circle-letter-j
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101398" />
</frame>
<item id="101398" />
circle-letter-k
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101399" />
</frame>
<item id="101399" />
circle-letter-l
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101400" />
</frame>
<item id="101400" />
circle-letter-m
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101401" />
</frame>
<item id="101401" />
circle-letter-n
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101402" />
</frame>
<item id="101402" />
circle-letter-o
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101403" />
</frame>
<item id="101403" />
circle-letter-p
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101404" />
</frame>
<item id="101404" />
circle-letter-q
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101405" />
</frame>
<item id="101405" />
circle-letter-r
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101406" />
</frame>
<item id="101406" />
circle-letter-s
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101407" />
</frame>
<item id="101407" />
circle-letter-t
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101408" />
</frame>
<item id="101408" />
circle-letter-u
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101409" />
</frame>
<item id="101409" />
circle-letter-v
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101410" />
</frame>
<item id="101410" />
circle-letter-w
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101411" />
</frame>
<item id="101411" />
circle-letter-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101412" />
</frame>
<item id="101412" />
circle-letter-y
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101413" />
</frame>
<item id="101413" />
circle-letter-z
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101414" />
</frame>
<item id="101414" />
circle-minus-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101416" />
</frame>
<item id="101416" />
circle-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101415" />
</frame>
<item id="101415" />
circle-number-0
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101417" />
</frame>
<item id="101417" />
circle-number-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101418" />
</frame>
<item id="101418" />
circle-number-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101419" />
</frame>
<item id="101419" />
circle-number-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101420" />
</frame>
<item id="101420" />
circle-number-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101421" />
</frame>
<item id="101421" />
circle-number-5
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101422" />
</frame>
<item id="101422" />
circle-number-6
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101423" />
</frame>
<item id="101423" />
circle-number-7
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101424" />
</frame>
<item id="101424" />
circle-number-8
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101425" />
</frame>
<item id="101425" />
circle-number-9
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101426" />
</frame>
<item id="101426" />
circle-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101427" />
</frame>
<item id="101427" />
circle-percentage
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101428" />
</frame>
<item id="101428" />
circle-plus-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101430" />
</frame>
<item id="101430" />
circle-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101429" />
</frame>
<item id="101429" />
circle-rectangle-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101432" />
</frame>
<item id="101432" />
circle-rectangle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101431" />
</frame>
<item id="101431" />
circle-square
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101433" />
</frame>
<item id="101433" />
circle-triangle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101434" />
</frame>
<item id="101434" />
circle-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101435" />
</frame>
<item id="101435" />
circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101293" />
</frame>
<item id="101293" />
circles-relation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101437" />
</frame>
<item id="101437" />
circles
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101436" />
</frame>
<item id="101436" />
circuit-ammeter
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101438" />
</frame>
<item id="101438" />
circuit-battery
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101439" />
</frame>
<item id="101439" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 1441-1530 of 4964 SVG files.
Back to section index
circuit-bulb
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101440" />
</frame>
<item id="101440" />
circuit-capacitor-polarized
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101442" />
</frame>
<item id="101442" />
circuit-capacitor
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101441" />
</frame>
<item id="101441" />
circuit-cell-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101444" />
</frame>
<item id="101444" />
circuit-cell
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101443" />
</frame>
<item id="101443" />
circuit-changeover
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101445" />
</frame>
<item id="101445" />
circuit-diode-zener
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101447" />
</frame>
<item id="101447" />
circuit-diode
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101446" />
</frame>
<item id="101446" />
circuit-ground-digital
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101449" />
</frame>
<item id="101449" />
circuit-ground
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101448" />
</frame>
<item id="101448" />
circuit-inductor
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101450" />
</frame>
<item id="101450" />
circuit-motor
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101451" />
</frame>
<item id="101451" />
circuit-pushbutton
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101452" />
</frame>
<item id="101452" />
circuit-resistor
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101453" />
</frame>
<item id="101453" />
circuit-switch-closed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101454" />
</frame>
<item id="101454" />
circuit-switch-open
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101455" />
</frame>
<item id="101455" />
circuit-voltmeter
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101456" />
</frame>
<item id="101456" />
clear-all
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101457" />
</frame>
<item id="101457" />
clear-formatting
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101458" />
</frame>
<item id="101458" />
click
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101459" />
</frame>
<item id="101459" />
cliff-jumping
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101460" />
</frame>
<item id="101460" />
clipboard-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101462" />
</frame>
<item id="101462" />
clipboard-copy
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101463" />
</frame>
<item id="101463" />
clipboard-data
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101464" />
</frame>
<item id="101464" />
clipboard-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101465" />
</frame>
<item id="101465" />
clipboard-list
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101466" />
</frame>
<item id="101466" />
clipboard-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101467" />
</frame>
<item id="101467" />
clipboard-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101468" />
</frame>
<item id="101468" />
clipboard-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101469" />
</frame>
<item id="101469" />
clipboard-smile
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101470" />
</frame>
<item id="101470" />
clipboard-text
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101471" />
</frame>
<item id="101471" />
clipboard-typography
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101472" />
</frame>
<item id="101472" />
clipboard-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101473" />
</frame>
<item id="101473" />
clipboard
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101461" />
</frame>
<item id="101461" />
clock-12
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101475" />
</frame>
<item id="101475" />
clock-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101476" />
</frame>
<item id="101476" />
clock-24
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101477" />
</frame>
<item id="101477" />
clock-bitcoin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101478" />
</frame>
<item id="101478" />
clock-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101479" />
</frame>
<item id="101479" />
clock-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101480" />
</frame>
<item id="101480" />
clock-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101481" />
</frame>
<item id="101481" />
clock-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101482" />
</frame>
<item id="101482" />
clock-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101483" />
</frame>
<item id="101483" />
clock-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101484" />
</frame>
<item id="101484" />
clock-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101485" />
</frame>
<item id="101485" />
clock-edit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101486" />
</frame>
<item id="101486" />
clock-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101487" />
</frame>
<item id="101487" />
clock-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101488" />
</frame>
<item id="101488" />
clock-hour-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101489" />
</frame>
<item id="101489" />
clock-hour-10
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101490" />
</frame>
<item id="101490" />
clock-hour-11
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101491" />
</frame>
<item id="101491" />
clock-hour-12
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101492" />
</frame>
<item id="101492" />
clock-hour-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101493" />
</frame>
<item id="101493" />
clock-hour-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101494" />
</frame>
<item id="101494" />
clock-hour-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101495" />
</frame>
<item id="101495" />
clock-hour-5
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101496" />
</frame>
<item id="101496" />
clock-hour-6
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101497" />
</frame>
<item id="101497" />
clock-hour-7
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101498" />
</frame>
<item id="101498" />
clock-hour-8
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101499" />
</frame>
<item id="101499" />
clock-hour-9
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101500" />
</frame>
<item id="101500" />
clock-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101501" />
</frame>
<item id="101501" />
clock-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101502" />
</frame>
<item id="101502" />
clock-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101503" />
</frame>
<item id="101503" />
clock-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101504" />
</frame>
<item id="101504" />
clock-play
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101505" />
</frame>
<item id="101505" />
clock-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101506" />
</frame>
<item id="101506" />
clock-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101507" />
</frame>
<item id="101507" />
clock-record
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101508" />
</frame>
<item id="101508" />
clock-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101509" />
</frame>
<item id="101509" />
clock-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101510" />
</frame>
<item id="101510" />
clock-shield
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101511" />
</frame>
<item id="101511" />
clock-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101512" />
</frame>
<item id="101512" />
clock-stop
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101513" />
</frame>
<item id="101513" />
clock-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101514" />
</frame>
<item id="101514" />
clock-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101515" />
</frame>
<item id="101515" />
clock
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101474" />
</frame>
<item id="101474" />
clothes-rack-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101517" />
</frame>
<item id="101517" />
clothes-rack
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101516" />
</frame>
<item id="101516" />
cloud-bitcoin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101519" />
</frame>
<item id="101519" />
cloud-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101520" />
</frame>
<item id="101520" />
cloud-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101521" />
</frame>
<item id="101521" />
cloud-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101522" />
</frame>
<item id="101522" />
cloud-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101523" />
</frame>
<item id="101523" />
cloud-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101524" />
</frame>
<item id="101524" />
cloud-computing
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101525" />
</frame>
<item id="101525" />
cloud-data-connection
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101526" />
</frame>
<item id="101526" />
cloud-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101527" />
</frame>
<item id="101527" />
cloud-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101528" />
</frame>
<item id="101528" />
cloud-download
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101529" />
</frame>
<item id="101529" />
cloud-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101530" />
</frame>
<item id="101530" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 1531-1620 of 4964 SVG files.
Back to section index
cloud-fog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101531" />
</frame>
<item id="101531" />
cloud-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101532" />
</frame>
<item id="101532" />
cloud-lock-open
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101534" />
</frame>
<item id="101534" />
cloud-lock
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101533" />
</frame>
<item id="101533" />
cloud-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101535" />
</frame>
<item id="101535" />
cloud-network
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101536" />
</frame>
<item id="101536" />
cloud-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101537" />
</frame>
<item id="101537" />
cloud-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101538" />
</frame>
<item id="101538" />
cloud-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101539" />
</frame>
<item id="101539" />
cloud-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101540" />
</frame>
<item id="101540" />
cloud-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101541" />
</frame>
<item id="101541" />
cloud-rain
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101542" />
</frame>
<item id="101542" />
cloud-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101543" />
</frame>
<item id="101543" />
cloud-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101544" />
</frame>
<item id="101544" />
cloud-snow
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101545" />
</frame>
<item id="101545" />
cloud-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101546" />
</frame>
<item id="101546" />
cloud-storm
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101547" />
</frame>
<item id="101547" />
cloud-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101548" />
</frame>
<item id="101548" />
cloud-upload
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101549" />
</frame>
<item id="101549" />
cloud-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101550" />
</frame>
<item id="101550" />
cloud
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101518" />
</frame>
<item id="101518" />
clover-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101552" />
</frame>
<item id="101552" />
clover
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101551" />
</frame>
<item id="101551" />
clubs
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101553" />
</frame>
<item id="101553" />
code-asterisk
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101555" />
</frame>
<item id="101555" />
code-circle-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101557" />
</frame>
<item id="101557" />
code-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101556" />
</frame>
<item id="101556" />
code-dots
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101558" />
</frame>
<item id="101558" />
code-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101559" />
</frame>
<item id="101559" />
code-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101560" />
</frame>
<item id="101560" />
code-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101561" />
</frame>
<item id="101561" />
code-variable-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101563" />
</frame>
<item id="101563" />
code-variable-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101564" />
</frame>
<item id="101564" />
code-variable
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101562" />
</frame>
<item id="101562" />
code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101554" />
</frame>
<item id="101554" />
coffee-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101566" />
</frame>
<item id="101566" />
coffee
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101565" />
</frame>
<item id="101565" />
coffin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101567" />
</frame>
<item id="101567" />
coin-bitcoin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101569" />
</frame>
<item id="101569" />
coin-euro
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101570" />
</frame>
<item id="101570" />
coin-monero
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101571" />
</frame>
<item id="101571" />
coin-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101572" />
</frame>
<item id="101572" />
coin-pound
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101573" />
</frame>
<item id="101573" />
coin-rupee
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101574" />
</frame>
<item id="101574" />
coin-taka
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101575" />
</frame>
<item id="101575" />
coin-yen
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101576" />
</frame>
<item id="101576" />
coin-yuan
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101577" />
</frame>
<item id="101577" />
coin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101568" />
</frame>
<item id="101568" />
coins
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101578" />
</frame>
<item id="101578" />
color-filter
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101579" />
</frame>
<item id="101579" />
color-picker-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101581" />
</frame>
<item id="101581" />
color-picker
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101580" />
</frame>
<item id="101580" />
color-swatch-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101583" />
</frame>
<item id="101583" />
color-swatch
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101582" />
</frame>
<item id="101582" />
column-insert-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101584" />
</frame>
<item id="101584" />
column-insert-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101585" />
</frame>
<item id="101585" />
column-remove
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101586" />
</frame>
<item id="101586" />
columns-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101588" />
</frame>
<item id="101588" />
columns-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101589" />
</frame>
<item id="101589" />
columns-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101590" />
</frame>
<item id="101590" />
columns-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101591" />
</frame>
<item id="101591" />
columns
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101587" />
</frame>
<item id="101587" />
comet
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101592" />
</frame>
<item id="101592" />
command-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101594" />
</frame>
<item id="101594" />
command
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101593" />
</frame>
<item id="101593" />
compass-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101596" />
</frame>
<item id="101596" />
compass
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101595" />
</frame>
<item id="101595" />
components-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101598" />
</frame>
<item id="101598" />
components
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101597" />
</frame>
<item id="101597" />
cone-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101600" />
</frame>
<item id="101600" />
cone-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101601" />
</frame>
<item id="101601" />
cone-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101602" />
</frame>
<item id="101602" />
cone
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101599" />
</frame>
<item id="101599" />
confetti-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101604" />
</frame>
<item id="101604" />
confetti
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101603" />
</frame>
<item id="101603" />
confucius
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101605" />
</frame>
<item id="101605" />
congruent-to
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101606" />
</frame>
<item id="101606" />
container-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101608" />
</frame>
<item id="101608" />
container
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101607" />
</frame>
<item id="101607" />
contract
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101609" />
</frame>
<item id="101609" />
contrast-2-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101612" />
</frame>
<item id="101612" />
contrast-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101611" />
</frame>
<item id="101611" />
contrast-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101613" />
</frame>
<item id="101613" />
contrast
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101610" />
</frame>
<item id="101610" />
cooker
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101614" />
</frame>
<item id="101614" />
cookie-man
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101616" />
</frame>
<item id="101616" />
cookie-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101617" />
</frame>
<item id="101617" />
cookie
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101615" />
</frame>
<item id="101615" />
copy-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101619" />
</frame>
<item id="101619" />
copy-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101620" />
</frame>
<item id="101620" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 1621-1710 of 4964 SVG files.
Back to section index
copy-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101621" />
</frame>
<item id="101621" />
copy-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101622" />
</frame>
<item id="101622" />
copy-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101623" />
</frame>
<item id="101623" />
copy
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101618" />
</frame>
<item id="101618" />
copyleft-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101625" />
</frame>
<item id="101625" />
copyleft
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101624" />
</frame>
<item id="101624" />
copyright-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101627" />
</frame>
<item id="101627" />
copyright
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101626" />
</frame>
<item id="101626" />
corner-down-left-double
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101629" />
</frame>
<item id="101629" />
corner-down-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101628" />
</frame>
<item id="101628" />
corner-down-right-double
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101631" />
</frame>
<item id="101631" />
corner-down-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101630" />
</frame>
<item id="101630" />
corner-left-down-double
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101633" />
</frame>
<item id="101633" />
corner-left-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101632" />
</frame>
<item id="101632" />
corner-left-up-double
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101635" />
</frame>
<item id="101635" />
corner-left-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101634" />
</frame>
<item id="101634" />
corner-right-down-double
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101637" />
</frame>
<item id="101637" />
corner-right-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101636" />
</frame>
<item id="101636" />
corner-right-up-double
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101639" />
</frame>
<item id="101639" />
corner-right-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101638" />
</frame>
<item id="101638" />
corner-up-left-double
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101641" />
</frame>
<item id="101641" />
corner-up-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101640" />
</frame>
<item id="101640" />
corner-up-right-double
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101643" />
</frame>
<item id="101643" />
corner-up-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101642" />
</frame>
<item id="101642" />
cpu-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101645" />
</frame>
<item id="101645" />
cpu-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101646" />
</frame>
<item id="101646" />
cpu
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101644" />
</frame>
<item id="101644" />
crane-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101648" />
</frame>
<item id="101648" />
crane
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101647" />
</frame>
<item id="101647" />
creative-commons-by
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101650" />
</frame>
<item id="101650" />
creative-commons-nc
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101651" />
</frame>
<item id="101651" />
creative-commons-nd
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101652" />
</frame>
<item id="101652" />
creative-commons-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101653" />
</frame>
<item id="101653" />
creative-commons-sa
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101654" />
</frame>
<item id="101654" />
creative-commons-zero
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101655" />
</frame>
<item id="101655" />
creative-commons
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101649" />
</frame>
<item id="101649" />
credit-card-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101657" />
</frame>
<item id="101657" />
credit-card-pay
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101658" />
</frame>
<item id="101658" />
credit-card-refund
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101659" />
</frame>
<item id="101659" />
credit-card
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101656" />
</frame>
<item id="101656" />
cricket
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101660" />
</frame>
<item id="101660" />
crop-1-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101662" />
</frame>
<item id="101662" />
crop-16-9
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101663" />
</frame>
<item id="101663" />
crop-3-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101664" />
</frame>
<item id="101664" />
crop-5-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101665" />
</frame>
<item id="101665" />
crop-7-5
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101666" />
</frame>
<item id="101666" />
crop-landscape
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101667" />
</frame>
<item id="101667" />
crop-portrait
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101668" />
</frame>
<item id="101668" />
crop
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101661" />
</frame>
<item id="101661" />
cross-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101670" />
</frame>
<item id="101670" />
cross
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101669" />
</frame>
<item id="101669" />
crosshair
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101671" />
</frame>
<item id="101671" />
crown-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101673" />
</frame>
<item id="101673" />
crown
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101672" />
</frame>
<item id="101672" />
crutches-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101675" />
</frame>
<item id="101675" />
crutches
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101674" />
</frame>
<item id="101674" />
crystal-ball
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101676" />
</frame>
<item id="101676" />
csv
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101677" />
</frame>
<item id="101677" />
cube-3d-sphere-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101680" />
</frame>
<item id="101680" />
cube-3d-sphere
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101679" />
</frame>
<item id="101679" />
cube-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101681" />
</frame>
<item id="101681" />
cube-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101682" />
</frame>
<item id="101682" />
cube-send
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101683" />
</frame>
<item id="101683" />
cube-spark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101684" />
</frame>
<item id="101684" />
cube-unfolded
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101685" />
</frame>
<item id="101685" />
cube
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101678" />
</frame>
<item id="101678" />
cup-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101687" />
</frame>
<item id="101687" />
cup
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101686" />
</frame>
<item id="101686" />
curling
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101688" />
</frame>
<item id="101688" />
curly-loop
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101689" />
</frame>
<item id="101689" />
currency-afghani
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101691" />
</frame>
<item id="101691" />
currency-bahraini
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101692" />
</frame>
<item id="101692" />
currency-baht
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101693" />
</frame>
<item id="101693" />
currency-bitcoin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101694" />
</frame>
<item id="101694" />
currency-cent
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101695" />
</frame>
<item id="101695" />
currency-dinar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101696" />
</frame>
<item id="101696" />
currency-dirham
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101697" />
</frame>
<item id="101697" />
currency-dogecoin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101698" />
</frame>
<item id="101698" />
currency-dollar-australian
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101700" />
</frame>
<item id="101700" />
currency-dollar-brunei
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101701" />
</frame>
<item id="101701" />
currency-dollar-canadian
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101702" />
</frame>
<item id="101702" />
currency-dollar-guyanese
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101703" />
</frame>
<item id="101703" />
currency-dollar-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101704" />
</frame>
<item id="101704" />
currency-dollar-singapore
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101705" />
</frame>
<item id="101705" />
currency-dollar-zimbabwean
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101706" />
</frame>
<item id="101706" />
currency-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101699" />
</frame>
<item id="101699" />
currency-dong
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101707" />
</frame>
<item id="101707" />
currency-dram
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101708" />
</frame>
<item id="101708" />
currency-ethereum
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101709" />
</frame>
<item id="101709" />
currency-euro-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101711" />
</frame>
<item id="101711" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 1711-1800 of 4964 SVG files.
Back to section index
currency-euro
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101710" />
</frame>
<item id="101710" />
currency-florin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101712" />
</frame>
<item id="101712" />
currency-forint
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101713" />
</frame>
<item id="101713" />
currency-frank
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101714" />
</frame>
<item id="101714" />
currency-guarani
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101715" />
</frame>
<item id="101715" />
currency-hryvnia
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101716" />
</frame>
<item id="101716" />
currency-iranian-rial
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101717" />
</frame>
<item id="101717" />
currency-kip
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101718" />
</frame>
<item id="101718" />
currency-krone-czech
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101719" />
</frame>
<item id="101719" />
currency-krone-danish
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101720" />
</frame>
<item id="101720" />
currency-krone-swedish
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101721" />
</frame>
<item id="101721" />
currency-lari
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101722" />
</frame>
<item id="101722" />
currency-leu
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101723" />
</frame>
<item id="101723" />
currency-lira
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101724" />
</frame>
<item id="101724" />
currency-litecoin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101725" />
</frame>
<item id="101725" />
currency-lyd
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101726" />
</frame>
<item id="101726" />
currency-manat
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101727" />
</frame>
<item id="101727" />
currency-monero
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101728" />
</frame>
<item id="101728" />
currency-naira
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101729" />
</frame>
<item id="101729" />
currency-nano
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101730" />
</frame>
<item id="101730" />
currency-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101731" />
</frame>
<item id="101731" />
currency-paanga
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101732" />
</frame>
<item id="101732" />
currency-peso
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101733" />
</frame>
<item id="101733" />
currency-pound-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101735" />
</frame>
<item id="101735" />
currency-pound
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101734" />
</frame>
<item id="101734" />
currency-quetzal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101736" />
</frame>
<item id="101736" />
currency-real
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101737" />
</frame>
<item id="101737" />
currency-renminbi
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101738" />
</frame>
<item id="101738" />
currency-ripple
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101739" />
</frame>
<item id="101739" />
currency-riyal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101740" />
</frame>
<item id="101740" />
currency-rubel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101741" />
</frame>
<item id="101741" />
currency-rufiyaa
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101742" />
</frame>
<item id="101742" />
currency-rupee-nepalese
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101744" />
</frame>
<item id="101744" />
currency-rupee
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101743" />
</frame>
<item id="101743" />
currency-shekel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101745" />
</frame>
<item id="101745" />
currency-solana
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101746" />
</frame>
<item id="101746" />
currency-som
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101747" />
</frame>
<item id="101747" />
currency-taka
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101748" />
</frame>
<item id="101748" />
currency-tenge
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101749" />
</frame>
<item id="101749" />
currency-tugrik
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101750" />
</frame>
<item id="101750" />
currency-won
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101751" />
</frame>
<item id="101751" />
currency-xrp
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101752" />
</frame>
<item id="101752" />
currency-yen-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101754" />
</frame>
<item id="101754" />
currency-yen
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101753" />
</frame>
<item id="101753" />
currency-yuan
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101755" />
</frame>
<item id="101755" />
currency-zloty
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101756" />
</frame>
<item id="101756" />
currency
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101690" />
</frame>
<item id="101690" />
current-location-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101758" />
</frame>
<item id="101758" />
current-location
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101757" />
</frame>
<item id="101757" />
cursor-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101759" />
</frame>
<item id="101759" />
cursor-text
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101760" />
</frame>
<item id="101760" />
cut
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101761" />
</frame>
<item id="101761" />
cylinder-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101763" />
</frame>
<item id="101763" />
cylinder-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101764" />
</frame>
<item id="101764" />
cylinder
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101762" />
</frame>
<item id="101762" />
dashboard-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101766" />
</frame>
<item id="101766" />
dashboard
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101765" />
</frame>
<item id="101765" />
database-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101768" />
</frame>
<item id="101768" />
database-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101769" />
</frame>
<item id="101769" />
database-edit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101770" />
</frame>
<item id="101770" />
database-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101771" />
</frame>
<item id="101771" />
database-export
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101772" />
</frame>
<item id="101772" />
database-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101773" />
</frame>
<item id="101773" />
database-import
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101774" />
</frame>
<item id="101774" />
database-leak
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101775" />
</frame>
<item id="101775" />
database-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101776" />
</frame>
<item id="101776" />
database-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101777" />
</frame>
<item id="101777" />
database-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101778" />
</frame>
<item id="101778" />
database-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101779" />
</frame>
<item id="101779" />
database-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101780" />
</frame>
<item id="101780" />
database-smile
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101781" />
</frame>
<item id="101781" />
database-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101782" />
</frame>
<item id="101782" />
database-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101783" />
</frame>
<item id="101783" />
database
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101767" />
</frame>
<item id="101767" />
decimal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101784" />
</frame>
<item id="101784" />
deer
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101785" />
</frame>
<item id="101785" />
delta
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101786" />
</frame>
<item id="101786" />
dental-broken
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101788" />
</frame>
<item id="101788" />
dental-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101789" />
</frame>
<item id="101789" />
dental
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101787" />
</frame>
<item id="101787" />
deselect
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101790" />
</frame>
<item id="101790" />
desk
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101791" />
</frame>
<item id="101791" />
details-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101793" />
</frame>
<item id="101793" />
details
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101792" />
</frame>
<item id="101792" />
device-airpods-case
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101795" />
</frame>
<item id="101795" />
device-airpods
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101794" />
</frame>
<item id="101794" />
device-airtag
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101796" />
</frame>
<item id="101796" />
device-analytics
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101797" />
</frame>
<item id="101797" />
device-audio-tape
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101798" />
</frame>
<item id="101798" />
device-camera-phone
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101799" />
</frame>
<item id="101799" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 1801-1890 of 4964 SVG files.
Back to section index
device-cctv-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101801" />
</frame>
<item id="101801" />
device-cctv
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101800" />
</frame>
<item id="101800" />
device-computer-camera-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101803" />
</frame>
<item id="101803" />
device-computer-camera
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101802" />
</frame>
<item id="101802" />
device-desktop-analytics
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101805" />
</frame>
<item id="101805" />
device-desktop-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101806" />
</frame>
<item id="101806" />
device-desktop-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101807" />
</frame>
<item id="101807" />
device-desktop-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101808" />
</frame>
<item id="101808" />
device-desktop-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101809" />
</frame>
<item id="101809" />
device-desktop-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101810" />
</frame>
<item id="101810" />
device-desktop-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101811" />
</frame>
<item id="101811" />
device-desktop-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101812" />
</frame>
<item id="101812" />
device-desktop-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101813" />
</frame>
<item id="101813" />
device-desktop-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101814" />
</frame>
<item id="101814" />
device-desktop-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101815" />
</frame>
<item id="101815" />
device-desktop-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101816" />
</frame>
<item id="101816" />
device-desktop-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101817" />
</frame>
<item id="101817" />
device-desktop-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101818" />
</frame>
<item id="101818" />
device-desktop-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101819" />
</frame>
<item id="101819" />
device-desktop-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101820" />
</frame>
<item id="101820" />
device-desktop-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101821" />
</frame>
<item id="101821" />
device-desktop-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101822" />
</frame>
<item id="101822" />
device-desktop-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101823" />
</frame>
<item id="101823" />
device-desktop-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101824" />
</frame>
<item id="101824" />
device-desktop-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101825" />
</frame>
<item id="101825" />
device-desktop
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101804" />
</frame>
<item id="101804" />
device-floppy
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101826" />
</frame>
<item id="101826" />
device-gamepad-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101828" />
</frame>
<item id="101828" />
device-gamepad-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101829" />
</frame>
<item id="101829" />
device-gamepad
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101827" />
</frame>
<item id="101827" />
device-heart-monitor
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101830" />
</frame>
<item id="101830" />
device-imac-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101832" />
</frame>
<item id="101832" />
device-imac-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101833" />
</frame>
<item id="101833" />
device-imac-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101834" />
</frame>
<item id="101834" />
device-imac-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101835" />
</frame>
<item id="101835" />
device-imac-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101836" />
</frame>
<item id="101836" />
device-imac-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101837" />
</frame>
<item id="101837" />
device-imac-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101838" />
</frame>
<item id="101838" />
device-imac-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101839" />
</frame>
<item id="101839" />
device-imac-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101840" />
</frame>
<item id="101840" />
device-imac-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101841" />
</frame>
<item id="101841" />
device-imac-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101842" />
</frame>
<item id="101842" />
device-imac-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101843" />
</frame>
<item id="101843" />
device-imac-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101844" />
</frame>
<item id="101844" />
device-imac-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101845" />
</frame>
<item id="101845" />
device-imac-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101846" />
</frame>
<item id="101846" />
device-imac-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101847" />
</frame>
<item id="101847" />
device-imac-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101848" />
</frame>
<item id="101848" />
device-imac-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101849" />
</frame>
<item id="101849" />
device-imac-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101850" />
</frame>
<item id="101850" />
device-imac-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101851" />
</frame>
<item id="101851" />
device-imac
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101831" />
</frame>
<item id="101831" />
device-ipad-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101853" />
</frame>
<item id="101853" />
device-ipad-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101854" />
</frame>
<item id="101854" />
device-ipad-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101855" />
</frame>
<item id="101855" />
device-ipad-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101856" />
</frame>
<item id="101856" />
device-ipad-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101857" />
</frame>
<item id="101857" />
device-ipad-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101858" />
</frame>
<item id="101858" />
device-ipad-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101859" />
</frame>
<item id="101859" />
device-ipad-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101860" />
</frame>
<item id="101860" />
device-ipad-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101861" />
</frame>
<item id="101861" />
device-ipad-horizontal-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101863" />
</frame>
<item id="101863" />
device-ipad-horizontal-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101864" />
</frame>
<item id="101864" />
device-ipad-horizontal-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101865" />
</frame>
<item id="101865" />
device-ipad-horizontal-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101866" />
</frame>
<item id="101866" />
device-ipad-horizontal-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101867" />
</frame>
<item id="101867" />
device-ipad-horizontal-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101868" />
</frame>
<item id="101868" />
device-ipad-horizontal-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101869" />
</frame>
<item id="101869" />
device-ipad-horizontal-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101870" />
</frame>
<item id="101870" />
device-ipad-horizontal-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101871" />
</frame>
<item id="101871" />
device-ipad-horizontal-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101872" />
</frame>
<item id="101872" />
device-ipad-horizontal-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101873" />
</frame>
<item id="101873" />
device-ipad-horizontal-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101874" />
</frame>
<item id="101874" />
device-ipad-horizontal-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101875" />
</frame>
<item id="101875" />
device-ipad-horizontal-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101876" />
</frame>
<item id="101876" />
device-ipad-horizontal-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101877" />
</frame>
<item id="101877" />
device-ipad-horizontal-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101878" />
</frame>
<item id="101878" />
device-ipad-horizontal-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101879" />
</frame>
<item id="101879" />
device-ipad-horizontal-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101880" />
</frame>
<item id="101880" />
device-ipad-horizontal-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101881" />
</frame>
<item id="101881" />
device-ipad-horizontal-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101882" />
</frame>
<item id="101882" />
device-ipad-horizontal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101862" />
</frame>
<item id="101862" />
device-ipad-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101883" />
</frame>
<item id="101883" />
device-ipad-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101884" />
</frame>
<item id="101884" />
device-ipad-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101885" />
</frame>
<item id="101885" />
device-ipad-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101886" />
</frame>
<item id="101886" />
device-ipad-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101887" />
</frame>
<item id="101887" />
device-ipad-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101888" />
</frame>
<item id="101888" />
device-ipad-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101889" />
</frame>
<item id="101889" />
device-ipad-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101890" />
</frame>
<item id="101890" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 1891-1980 of 4964 SVG files.
Back to section index
device-ipad-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101891" />
</frame>
<item id="101891" />
device-ipad-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101892" />
</frame>
<item id="101892" />
device-ipad-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101893" />
</frame>
<item id="101893" />
device-ipad
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101852" />
</frame>
<item id="101852" />
device-landline-phone
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101894" />
</frame>
<item id="101894" />
device-laptop-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101896" />
</frame>
<item id="101896" />
device-laptop
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101895" />
</frame>
<item id="101895" />
device-mobile-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101898" />
</frame>
<item id="101898" />
device-mobile-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101899" />
</frame>
<item id="101899" />
device-mobile-charging
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101900" />
</frame>
<item id="101900" />
device-mobile-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101901" />
</frame>
<item id="101901" />
device-mobile-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101902" />
</frame>
<item id="101902" />
device-mobile-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101903" />
</frame>
<item id="101903" />
device-mobile-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101904" />
</frame>
<item id="101904" />
device-mobile-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101905" />
</frame>
<item id="101905" />
device-mobile-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101906" />
</frame>
<item id="101906" />
device-mobile-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101907" />
</frame>
<item id="101907" />
device-mobile-message
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101908" />
</frame>
<item id="101908" />
device-mobile-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101909" />
</frame>
<item id="101909" />
device-mobile-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101910" />
</frame>
<item id="101910" />
device-mobile-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101911" />
</frame>
<item id="101911" />
device-mobile-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101912" />
</frame>
<item id="101912" />
device-mobile-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101913" />
</frame>
<item id="101913" />
device-mobile-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101914" />
</frame>
<item id="101914" />
device-mobile-rotated
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101915" />
</frame>
<item id="101915" />
device-mobile-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101916" />
</frame>
<item id="101916" />
device-mobile-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101917" />
</frame>
<item id="101917" />
device-mobile-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101918" />
</frame>
<item id="101918" />
device-mobile-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101919" />
</frame>
<item id="101919" />
device-mobile-vibration
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101920" />
</frame>
<item id="101920" />
device-mobile-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101921" />
</frame>
<item id="101921" />
device-mobile
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101897" />
</frame>
<item id="101897" />
device-nintendo-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101923" />
</frame>
<item id="101923" />
device-nintendo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101922" />
</frame>
<item id="101922" />
device-projector
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101924" />
</frame>
<item id="101924" />
device-remote
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101925" />
</frame>
<item id="101925" />
device-sd-card
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101926" />
</frame>
<item id="101926" />
device-sim-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101928" />
</frame>
<item id="101928" />
device-sim-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101929" />
</frame>
<item id="101929" />
device-sim-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101930" />
</frame>
<item id="101930" />
device-sim
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101927" />
</frame>
<item id="101927" />
device-speaker-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101932" />
</frame>
<item id="101932" />
device-speaker
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101931" />
</frame>
<item id="101931" />
device-tablet-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101934" />
</frame>
<item id="101934" />
device-tablet-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101935" />
</frame>
<item id="101935" />
device-tablet-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101936" />
</frame>
<item id="101936" />
device-tablet-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101937" />
</frame>
<item id="101937" />
device-tablet-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101938" />
</frame>
<item id="101938" />
device-tablet-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101939" />
</frame>
<item id="101939" />
device-tablet-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101940" />
</frame>
<item id="101940" />
device-tablet-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101941" />
</frame>
<item id="101941" />
device-tablet-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101942" />
</frame>
<item id="101942" />
device-tablet-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101943" />
</frame>
<item id="101943" />
device-tablet-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101944" />
</frame>
<item id="101944" />
device-tablet-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101945" />
</frame>
<item id="101945" />
device-tablet-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101946" />
</frame>
<item id="101946" />
device-tablet-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101947" />
</frame>
<item id="101947" />
device-tablet-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101948" />
</frame>
<item id="101948" />
device-tablet-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101949" />
</frame>
<item id="101949" />
device-tablet-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101950" />
</frame>
<item id="101950" />
device-tablet-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101951" />
</frame>
<item id="101951" />
device-tablet-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101952" />
</frame>
<item id="101952" />
device-tablet-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101953" />
</frame>
<item id="101953" />
device-tablet
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101933" />
</frame>
<item id="101933" />
device-tv-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101955" />
</frame>
<item id="101955" />
device-tv-old
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101956" />
</frame>
<item id="101956" />
device-tv
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101954" />
</frame>
<item id="101954" />
device-unknown
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101957" />
</frame>
<item id="101957" />
device-usb
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101958" />
</frame>
<item id="101958" />
device-vision-pro
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101959" />
</frame>
<item id="101959" />
device-watch-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101961" />
</frame>
<item id="101961" />
device-watch-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101962" />
</frame>
<item id="101962" />
device-watch-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101963" />
</frame>
<item id="101963" />
device-watch-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101964" />
</frame>
<item id="101964" />
device-watch-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101965" />
</frame>
<item id="101965" />
device-watch-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101966" />
</frame>
<item id="101966" />
device-watch-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101967" />
</frame>
<item id="101967" />
device-watch-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101968" />
</frame>
<item id="101968" />
device-watch-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101969" />
</frame>
<item id="101969" />
device-watch-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101970" />
</frame>
<item id="101970" />
device-watch-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101971" />
</frame>
<item id="101971" />
device-watch-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101972" />
</frame>
<item id="101972" />
device-watch-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101973" />
</frame>
<item id="101973" />
device-watch-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101974" />
</frame>
<item id="101974" />
device-watch-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101975" />
</frame>
<item id="101975" />
device-watch-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101976" />
</frame>
<item id="101976" />
device-watch-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101977" />
</frame>
<item id="101977" />
device-watch-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101978" />
</frame>
<item id="101978" />
device-watch-stats-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101980" />
</frame>
<item id="101980" />
device-watch-stats
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101979" />
</frame>
<item id="101979" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 1981-2070 of 4964 SVG files.
Back to section index
device-watch-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101981" />
</frame>
<item id="101981" />
device-watch-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101982" />
</frame>
<item id="101982" />
device-watch
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101960" />
</frame>
<item id="101960" />
devices-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101984" />
</frame>
<item id="101984" />
devices-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101985" />
</frame>
<item id="101985" />
devices-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101986" />
</frame>
<item id="101986" />
devices-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101987" />
</frame>
<item id="101987" />
devices-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101988" />
</frame>
<item id="101988" />
devices-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101989" />
</frame>
<item id="101989" />
devices-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101990" />
</frame>
<item id="101990" />
devices-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101991" />
</frame>
<item id="101991" />
devices-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101992" />
</frame>
<item id="101992" />
devices-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101993" />
</frame>
<item id="101993" />
devices-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101994" />
</frame>
<item id="101994" />
devices-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101995" />
</frame>
<item id="101995" />
devices-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101996" />
</frame>
<item id="101996" />
devices-pc-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101998" />
</frame>
<item id="101998" />
devices-pc
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101997" />
</frame>
<item id="101997" />
devices-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101999" />
</frame>
<item id="101999" />
devices-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102000" />
</frame>
<item id="102000" />
devices-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102001" />
</frame>
<item id="102001" />
devices-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102002" />
</frame>
<item id="102002" />
devices-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102003" />
</frame>
<item id="102003" />
devices-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102004" />
</frame>
<item id="102004" />
devices-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102005" />
</frame>
<item id="102005" />
devices-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102006" />
</frame>
<item id="102006" />
devices
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="101983" />
</frame>
<item id="101983" />
diabolo-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102008" />
</frame>
<item id="102008" />
diabolo-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102009" />
</frame>
<item id="102009" />
diabolo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102007" />
</frame>
<item id="102007" />
dialpad-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102011" />
</frame>
<item id="102011" />
dialpad
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102010" />
</frame>
<item id="102010" />
diamond-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102013" />
</frame>
<item id="102013" />
diamond
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102012" />
</frame>
<item id="102012" />
diamonds
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102014" />
</frame>
<item id="102014" />
diaper
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102015" />
</frame>
<item id="102015" />
dice-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102017" />
</frame>
<item id="102017" />
dice-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102018" />
</frame>
<item id="102018" />
dice-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102019" />
</frame>
<item id="102019" />
dice-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102020" />
</frame>
<item id="102020" />
dice-5
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102021" />
</frame>
<item id="102021" />
dice-6
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102022" />
</frame>
<item id="102022" />
dice
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102016" />
</frame>
<item id="102016" />
dimensions
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102023" />
</frame>
<item id="102023" />
direction-arrows
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102025" />
</frame>
<item id="102025" />
direction-horizontal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102026" />
</frame>
<item id="102026" />
direction-sign-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102028" />
</frame>
<item id="102028" />
direction-sign
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102027" />
</frame>
<item id="102027" />
direction
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102024" />
</frame>
<item id="102024" />
directions-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102030" />
</frame>
<item id="102030" />
directions
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102029" />
</frame>
<item id="102029" />
disabled-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102032" />
</frame>
<item id="102032" />
disabled-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102033" />
</frame>
<item id="102033" />
disabled
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102031" />
</frame>
<item id="102031" />
disc-golf
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102035" />
</frame>
<item id="102035" />
disc-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102036" />
</frame>
<item id="102036" />
disc
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102034" />
</frame>
<item id="102034" />
discount-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102038" />
</frame>
<item id="102038" />
discount
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102037" />
</frame>
<item id="102037" />
divide
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102039" />
</frame>
<item id="102039" />
dna-2-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102042" />
</frame>
<item id="102042" />
dna-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102041" />
</frame>
<item id="102041" />
dna-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102043" />
</frame>
<item id="102043" />
dna
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102040" />
</frame>
<item id="102040" />
dog-bowl
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102045" />
</frame>
<item id="102045" />
dog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102044" />
</frame>
<item id="102044" />
door-enter
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102047" />
</frame>
<item id="102047" />
door-exit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102048" />
</frame>
<item id="102048" />
door-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102049" />
</frame>
<item id="102049" />
door
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102046" />
</frame>
<item id="102046" />
dots-circle-horizontal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102051" />
</frame>
<item id="102051" />
dots-diagonal-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102053" />
</frame>
<item id="102053" />
dots-diagonal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102052" />
</frame>
<item id="102052" />
dots-vertical
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102054" />
</frame>
<item id="102054" />
dots
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102050" />
</frame>
<item id="102050" />
download-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102056" />
</frame>
<item id="102056" />
download
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102055" />
</frame>
<item id="102055" />
drag-drop-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102058" />
</frame>
<item id="102058" />
drag-drop
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102057" />
</frame>
<item id="102057" />
drone-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102060" />
</frame>
<item id="102060" />
drone
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102059" />
</frame>
<item id="102059" />
drop-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102061" />
</frame>
<item id="102061" />
droplet-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102063" />
</frame>
<item id="102063" />
droplet-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102064" />
</frame>
<item id="102064" />
droplet-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102065" />
</frame>
<item id="102065" />
droplet-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102066" />
</frame>
<item id="102066" />
droplet-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102067" />
</frame>
<item id="102067" />
droplet-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102068" />
</frame>
<item id="102068" />
droplet-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102069" />
</frame>
<item id="102069" />
droplet-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102070" />
</frame>
<item id="102070" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 2071-2160 of 4964 SVG files.
Back to section index
droplet-half-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102072" />
</frame>
<item id="102072" />
droplet-half
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102071" />
</frame>
<item id="102071" />
droplet-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102073" />
</frame>
<item id="102073" />
droplet-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102074" />
</frame>
<item id="102074" />
droplet-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102075" />
</frame>
<item id="102075" />
droplet-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102076" />
</frame>
<item id="102076" />
droplet-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102077" />
</frame>
<item id="102077" />
droplet-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102078" />
</frame>
<item id="102078" />
droplet-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102079" />
</frame>
<item id="102079" />
droplet-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102080" />
</frame>
<item id="102080" />
droplet-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102081" />
</frame>
<item id="102081" />
droplet-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102082" />
</frame>
<item id="102082" />
droplet-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102083" />
</frame>
<item id="102083" />
droplet-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102084" />
</frame>
<item id="102084" />
droplet
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102062" />
</frame>
<item id="102062" />
droplets
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102085" />
</frame>
<item id="102085" />
dual-screen
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102086" />
</frame>
<item id="102086" />
dumpling
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102087" />
</frame>
<item id="102087" />
e-passport
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102088" />
</frame>
<item id="102088" />
ear-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102090" />
</frame>
<item id="102090" />
ear-scan
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102091" />
</frame>
<item id="102091" />
ear
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102089" />
</frame>
<item id="102089" />
ease-in-control-point
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102093" />
</frame>
<item id="102093" />
ease-in-out-control-points
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102095" />
</frame>
<item id="102095" />
ease-in-out
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102094" />
</frame>
<item id="102094" />
ease-in
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102092" />
</frame>
<item id="102092" />
ease-out-control-point
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102097" />
</frame>
<item id="102097" />
ease-out
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102096" />
</frame>
<item id="102096" />
edit-circle-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102100" />
</frame>
<item id="102100" />
edit-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102099" />
</frame>
<item id="102099" />
edit-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102101" />
</frame>
<item id="102101" />
edit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102098" />
</frame>
<item id="102098" />
egg-cracked
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102103" />
</frame>
<item id="102103" />
egg-fried
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102104" />
</frame>
<item id="102104" />
egg-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102105" />
</frame>
<item id="102105" />
egg
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102102" />
</frame>
<item id="102102" />
eggs
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102106" />
</frame>
<item id="102106" />
elevator-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102108" />
</frame>
<item id="102108" />
elevator
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102107" />
</frame>
<item id="102107" />
emergency-bed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102109" />
</frame>
<item id="102109" />
empathize-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102111" />
</frame>
<item id="102111" />
empathize
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102110" />
</frame>
<item id="102110" />
emphasis
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102112" />
</frame>
<item id="102112" />
engine-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102114" />
</frame>
<item id="102114" />
engine
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102113" />
</frame>
<item id="102113" />
equal-double
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102116" />
</frame>
<item id="102116" />
equal-not
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102117" />
</frame>
<item id="102117" />
equal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102115" />
</frame>
<item id="102115" />
eraser-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102119" />
</frame>
<item id="102119" />
eraser
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102118" />
</frame>
<item id="102118" />
error-404-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102121" />
</frame>
<item id="102121" />
error-404
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102120" />
</frame>
<item id="102120" />
escalator-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102123" />
</frame>
<item id="102123" />
escalator-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102124" />
</frame>
<item id="102124" />
escalator
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102122" />
</frame>
<item id="102122" />
exchange-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102126" />
</frame>
<item id="102126" />
exchange
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102125" />
</frame>
<item id="102125" />
exclamation-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102127" />
</frame>
<item id="102127" />
exclamation-mark-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102129" />
</frame>
<item id="102129" />
exclamation-mark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102128" />
</frame>
<item id="102128" />
explicit-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102131" />
</frame>
<item id="102131" />
explicit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102130" />
</frame>
<item id="102130" />
exposure-0
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102133" />
</frame>
<item id="102133" />
exposure-minus-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102134" />
</frame>
<item id="102134" />
exposure-minus-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102135" />
</frame>
<item id="102135" />
exposure-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102136" />
</frame>
<item id="102136" />
exposure-plus-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102137" />
</frame>
<item id="102137" />
exposure-plus-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102138" />
</frame>
<item id="102138" />
exposure
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102132" />
</frame>
<item id="102132" />
external-link-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102140" />
</frame>
<item id="102140" />
external-link
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102139" />
</frame>
<item id="102139" />
eye-bitcoin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102142" />
</frame>
<item id="102142" />
eye-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102143" />
</frame>
<item id="102143" />
eye-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102144" />
</frame>
<item id="102144" />
eye-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102145" />
</frame>
<item id="102145" />
eye-closed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102146" />
</frame>
<item id="102146" />
eye-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102147" />
</frame>
<item id="102147" />
eye-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102148" />
</frame>
<item id="102148" />
eye-discount
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102149" />
</frame>
<item id="102149" />
eye-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102150" />
</frame>
<item id="102150" />
eye-dotted
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102151" />
</frame>
<item id="102151" />
eye-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102152" />
</frame>
<item id="102152" />
eye-edit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102153" />
</frame>
<item id="102153" />
eye-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102154" />
</frame>
<item id="102154" />
eye-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102155" />
</frame>
<item id="102155" />
eye-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102156" />
</frame>
<item id="102156" />
eye-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102157" />
</frame>
<item id="102157" />
eye-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102158" />
</frame>
<item id="102158" />
eye-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102159" />
</frame>
<item id="102159" />
eye-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102160" />
</frame>
<item id="102160" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 2161-2250 of 4964 SVG files.
Back to section index
eye-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102161" />
</frame>
<item id="102161" />
eye-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102162" />
</frame>
<item id="102162" />
eye-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102163" />
</frame>
<item id="102163" />
eye-spark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102164" />
</frame>
<item id="102164" />
eye-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102165" />
</frame>
<item id="102165" />
eye-table
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102166" />
</frame>
<item id="102166" />
eye-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102167" />
</frame>
<item id="102167" />
eye-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102168" />
</frame>
<item id="102168" />
eye
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102141" />
</frame>
<item id="102141" />
eyeglass-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102170" />
</frame>
<item id="102170" />
eyeglass-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102171" />
</frame>
<item id="102171" />
eyeglass
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102169" />
</frame>
<item id="102169" />
face-id-error
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102173" />
</frame>
<item id="102173" />
face-id
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102172" />
</frame>
<item id="102172" />
face-mask-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102175" />
</frame>
<item id="102175" />
face-mask
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102174" />
</frame>
<item id="102174" />
fall
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102176" />
</frame>
<item id="102176" />
favicon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102177" />
</frame>
<item id="102177" />
feather-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102179" />
</frame>
<item id="102179" />
feather
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102178" />
</frame>
<item id="102178" />
fence-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102181" />
</frame>
<item id="102181" />
fence
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102180" />
</frame>
<item id="102180" />
ferry
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102182" />
</frame>
<item id="102182" />
fidget-spinner
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102183" />
</frame>
<item id="102183" />
file-3d
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102185" />
</frame>
<item id="102185" />
file-ai
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102186" />
</frame>
<item id="102186" />
file-alert
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102187" />
</frame>
<item id="102187" />
file-analytics
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102188" />
</frame>
<item id="102188" />
file-arrow-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102189" />
</frame>
<item id="102189" />
file-arrow-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102190" />
</frame>
<item id="102190" />
file-barcode
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102191" />
</frame>
<item id="102191" />
file-bitcoin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102192" />
</frame>
<item id="102192" />
file-broken
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102193" />
</frame>
<item id="102193" />
file-certificate
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102194" />
</frame>
<item id="102194" />
file-chart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102195" />
</frame>
<item id="102195" />
file-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102196" />
</frame>
<item id="102196" />
file-code-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102198" />
</frame>
<item id="102198" />
file-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102197" />
</frame>
<item id="102197" />
file-cv
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102199" />
</frame>
<item id="102199" />
file-database
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102200" />
</frame>
<item id="102200" />
file-delta
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102201" />
</frame>
<item id="102201" />
file-description
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102202" />
</frame>
<item id="102202" />
file-diff
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102203" />
</frame>
<item id="102203" />
file-digit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102204" />
</frame>
<item id="102204" />
file-dislike
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102205" />
</frame>
<item id="102205" />
file-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102206" />
</frame>
<item id="102206" />
file-dots
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102207" />
</frame>
<item id="102207" />
file-download
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102208" />
</frame>
<item id="102208" />
file-euro
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102209" />
</frame>
<item id="102209" />
file-excel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102210" />
</frame>
<item id="102210" />
file-export
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102211" />
</frame>
<item id="102211" />
file-function
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102212" />
</frame>
<item id="102212" />
file-horizontal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102213" />
</frame>
<item id="102213" />
file-import
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102214" />
</frame>
<item id="102214" />
file-infinity
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102215" />
</frame>
<item id="102215" />
file-info
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102216" />
</frame>
<item id="102216" />
file-invoice
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102217" />
</frame>
<item id="102217" />
file-isr
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102218" />
</frame>
<item id="102218" />
file-lambda
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102219" />
</frame>
<item id="102219" />
file-like
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102220" />
</frame>
<item id="102220" />
file-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102221" />
</frame>
<item id="102221" />
file-music
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102222" />
</frame>
<item id="102222" />
file-neutral
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102223" />
</frame>
<item id="102223" />
file-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102224" />
</frame>
<item id="102224" />
file-orientation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102225" />
</frame>
<item id="102225" />
file-pencil
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102226" />
</frame>
<item id="102226" />
file-percent
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102227" />
</frame>
<item id="102227" />
file-phone
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102228" />
</frame>
<item id="102228" />
file-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102229" />
</frame>
<item id="102229" />
file-power
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102230" />
</frame>
<item id="102230" />
file-report
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102231" />
</frame>
<item id="102231" />
file-rss
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102232" />
</frame>
<item id="102232" />
file-sad
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102233" />
</frame>
<item id="102233" />
file-scissors
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102234" />
</frame>
<item id="102234" />
file-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102235" />
</frame>
<item id="102235" />
file-settings
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102236" />
</frame>
<item id="102236" />
file-shredder
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102237" />
</frame>
<item id="102237" />
file-signal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102238" />
</frame>
<item id="102238" />
file-smile
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102239" />
</frame>
<item id="102239" />
file-spark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102240" />
</frame>
<item id="102240" />
file-spreadsheet
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102241" />
</frame>
<item id="102241" />
file-stack
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102242" />
</frame>
<item id="102242" />
file-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102243" />
</frame>
<item id="102243" />
file-symlink
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102244" />
</frame>
<item id="102244" />
file-text-ai
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102246" />
</frame>
<item id="102246" />
file-text-shield
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102247" />
</frame>
<item id="102247" />
file-text-spark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102248" />
</frame>
<item id="102248" />
file-text
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102245" />
</frame>
<item id="102245" />
file-time
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102249" />
</frame>
<item id="102249" />
file-type-bmp
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102250" />
</frame>
<item id="102250" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 2251-2340 of 4964 SVG files.
Back to section index
file-type-css
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102251" />
</frame>
<item id="102251" />
file-type-csv
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102252" />
</frame>
<item id="102252" />
file-type-doc
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102253" />
</frame>
<item id="102253" />
file-type-docx
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102254" />
</frame>
<item id="102254" />
file-type-html
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102255" />
</frame>
<item id="102255" />
file-type-jpg
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102256" />
</frame>
<item id="102256" />
file-type-js
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102257" />
</frame>
<item id="102257" />
file-type-jsx
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102258" />
</frame>
<item id="102258" />
file-type-pdf
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102259" />
</frame>
<item id="102259" />
file-type-php
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102260" />
</frame>
<item id="102260" />
file-type-png
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102261" />
</frame>
<item id="102261" />
file-type-ppt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102262" />
</frame>
<item id="102262" />
file-type-rs
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102263" />
</frame>
<item id="102263" />
file-type-sql
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102264" />
</frame>
<item id="102264" />
file-type-svg
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102265" />
</frame>
<item id="102265" />
file-type-ts
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102266" />
</frame>
<item id="102266" />
file-type-tsx
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102267" />
</frame>
<item id="102267" />
file-type-txt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102268" />
</frame>
<item id="102268" />
file-type-vue
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102269" />
</frame>
<item id="102269" />
file-type-xls
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102270" />
</frame>
<item id="102270" />
file-type-xml
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102271" />
</frame>
<item id="102271" />
file-type-zip
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102272" />
</frame>
<item id="102272" />
file-typography
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102273" />
</frame>
<item id="102273" />
file-unknown
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102274" />
</frame>
<item id="102274" />
file-upload
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102275" />
</frame>
<item id="102275" />
file-vector
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102276" />
</frame>
<item id="102276" />
file-word
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102277" />
</frame>
<item id="102277" />
file-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102278" />
</frame>
<item id="102278" />
file-zip
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102279" />
</frame>
<item id="102279" />
file
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102184" />
</frame>
<item id="102184" />
files-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102281" />
</frame>
<item id="102281" />
files
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102280" />
</frame>
<item id="102280" />
filter-2-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102284" />
</frame>
<item id="102284" />
filter-2-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102285" />
</frame>
<item id="102285" />
filter-2-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102286" />
</frame>
<item id="102286" />
filter-2-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102287" />
</frame>
<item id="102287" />
filter-2-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102288" />
</frame>
<item id="102288" />
filter-2-discount
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102289" />
</frame>
<item id="102289" />
filter-2-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102290" />
</frame>
<item id="102290" />
filter-2-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102291" />
</frame>
<item id="102291" />
filter-2-edit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102292" />
</frame>
<item id="102292" />
filter-2-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102293" />
</frame>
<item id="102293" />
filter-2-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102294" />
</frame>
<item id="102294" />
filter-2-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102295" />
</frame>
<item id="102295" />
filter-2-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102296" />
</frame>
<item id="102296" />
filter-2-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102297" />
</frame>
<item id="102297" />
filter-2-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102298" />
</frame>
<item id="102298" />
filter-2-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102299" />
</frame>
<item id="102299" />
filter-2-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102300" />
</frame>
<item id="102300" />
filter-2-spark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102301" />
</frame>
<item id="102301" />
filter-2-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102302" />
</frame>
<item id="102302" />
filter-2-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102303" />
</frame>
<item id="102303" />
filter-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102283" />
</frame>
<item id="102283" />
filter-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102304" />
</frame>
<item id="102304" />
filter-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102305" />
</frame>
<item id="102305" />
filter-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102306" />
</frame>
<item id="102306" />
filter-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102307" />
</frame>
<item id="102307" />
filter-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102308" />
</frame>
<item id="102308" />
filter-discount
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102309" />
</frame>
<item id="102309" />
filter-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102310" />
</frame>
<item id="102310" />
filter-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102311" />
</frame>
<item id="102311" />
filter-edit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102312" />
</frame>
<item id="102312" />
filter-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102313" />
</frame>
<item id="102313" />
filter-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102314" />
</frame>
<item id="102314" />
filter-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102315" />
</frame>
<item id="102315" />
filter-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102316" />
</frame>
<item id="102316" />
filter-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102317" />
</frame>
<item id="102317" />
filter-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102318" />
</frame>
<item id="102318" />
filter-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102319" />
</frame>
<item id="102319" />
filter-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102320" />
</frame>
<item id="102320" />
filter-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102321" />
</frame>
<item id="102321" />
filter-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102322" />
</frame>
<item id="102322" />
filter-spark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102323" />
</frame>
<item id="102323" />
filter-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102324" />
</frame>
<item id="102324" />
filter-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102325" />
</frame>
<item id="102325" />
filter-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102326" />
</frame>
<item id="102326" />
filter
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102282" />
</frame>
<item id="102282" />
filters
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102327" />
</frame>
<item id="102327" />
fingerprint-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102329" />
</frame>
<item id="102329" />
fingerprint-scan
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102330" />
</frame>
<item id="102330" />
fingerprint
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102328" />
</frame>
<item id="102328" />
fire-extinguisher
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102331" />
</frame>
<item id="102331" />
fire-hydrant-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102333" />
</frame>
<item id="102333" />
fire-hydrant
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102332" />
</frame>
<item id="102332" />
firetruck
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102334" />
</frame>
<item id="102334" />
first-aid-kit-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102336" />
</frame>
<item id="102336" />
first-aid-kit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102335" />
</frame>
<item id="102335" />
fish-bone
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102338" />
</frame>
<item id="102338" />
fish-christianity
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102339" />
</frame>
<item id="102339" />
fish-hook-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102341" />
</frame>
<item id="102341" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 2341-2430 of 4964 SVG files.
Back to section index
fish-hook
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102340" />
</frame>
<item id="102340" />
fish-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102342" />
</frame>
<item id="102342" />
fish
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102337" />
</frame>
<item id="102337" />
flag-2-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102345" />
</frame>
<item id="102345" />
flag-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102344" />
</frame>
<item id="102344" />
flag-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102346" />
</frame>
<item id="102346" />
flag-bitcoin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102347" />
</frame>
<item id="102347" />
flag-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102348" />
</frame>
<item id="102348" />
flag-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102349" />
</frame>
<item id="102349" />
flag-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102350" />
</frame>
<item id="102350" />
flag-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102351" />
</frame>
<item id="102351" />
flag-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102352" />
</frame>
<item id="102352" />
flag-discount
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102353" />
</frame>
<item id="102353" />
flag-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102354" />
</frame>
<item id="102354" />
flag-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102355" />
</frame>
<item id="102355" />
flag-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102356" />
</frame>
<item id="102356" />
flag-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102357" />
</frame>
<item id="102357" />
flag-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102358" />
</frame>
<item id="102358" />
flag-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102359" />
</frame>
<item id="102359" />
flag-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102360" />
</frame>
<item id="102360" />
flag-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102361" />
</frame>
<item id="102361" />
flag-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102362" />
</frame>
<item id="102362" />
flag-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102363" />
</frame>
<item id="102363" />
flag-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102364" />
</frame>
<item id="102364" />
flag-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102365" />
</frame>
<item id="102365" />
flag-spark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102366" />
</frame>
<item id="102366" />
flag-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102367" />
</frame>
<item id="102367" />
flag-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102368" />
</frame>
<item id="102368" />
flag-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102369" />
</frame>
<item id="102369" />
flag
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102343" />
</frame>
<item id="102343" />
flame-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102371" />
</frame>
<item id="102371" />
flame
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102370" />
</frame>
<item id="102370" />
flare
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102372" />
</frame>
<item id="102372" />
flask-2-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102375" />
</frame>
<item id="102375" />
flask-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102374" />
</frame>
<item id="102374" />
flask-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102376" />
</frame>
<item id="102376" />
flask
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102373" />
</frame>
<item id="102373" />
flip-flops
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102377" />
</frame>
<item id="102377" />
flip-horizontal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102378" />
</frame>
<item id="102378" />
flip-vertical
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102379" />
</frame>
<item id="102379" />
float-center
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102380" />
</frame>
<item id="102380" />
float-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102381" />
</frame>
<item id="102381" />
float-none
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102382" />
</frame>
<item id="102382" />
float-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102383" />
</frame>
<item id="102383" />
flower-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102385" />
</frame>
<item id="102385" />
flower
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102384" />
</frame>
<item id="102384" />
focus-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102387" />
</frame>
<item id="102387" />
focus-auto
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102388" />
</frame>
<item id="102388" />
focus-centered
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102389" />
</frame>
<item id="102389" />
focus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102386" />
</frame>
<item id="102386" />
fold-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102391" />
</frame>
<item id="102391" />
fold-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102392" />
</frame>
<item id="102392" />
fold
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102390" />
</frame>
<item id="102390" />
folder-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102394" />
</frame>
<item id="102394" />
folder-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102395" />
</frame>
<item id="102395" />
folder-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102396" />
</frame>
<item id="102396" />
folder-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102397" />
</frame>
<item id="102397" />
folder-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102398" />
</frame>
<item id="102398" />
folder-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102399" />
</frame>
<item id="102399" />
folder-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102400" />
</frame>
<item id="102400" />
folder-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102401" />
</frame>
<item id="102401" />
folder-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102402" />
</frame>
<item id="102402" />
folder-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102403" />
</frame>
<item id="102403" />
folder-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102404" />
</frame>
<item id="102404" />
folder-open
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102405" />
</frame>
<item id="102405" />
folder-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102406" />
</frame>
<item id="102406" />
folder-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102407" />
</frame>
<item id="102407" />
folder-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102408" />
</frame>
<item id="102408" />
folder-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102409" />
</frame>
<item id="102409" />
folder-root
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102410" />
</frame>
<item id="102410" />
folder-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102411" />
</frame>
<item id="102411" />
folder-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102412" />
</frame>
<item id="102412" />
folder-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102413" />
</frame>
<item id="102413" />
folder-symlink
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102414" />
</frame>
<item id="102414" />
folder-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102415" />
</frame>
<item id="102415" />
folder-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102416" />
</frame>
<item id="102416" />
folder
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102393" />
</frame>
<item id="102393" />
folders-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102418" />
</frame>
<item id="102418" />
folders
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102417" />
</frame>
<item id="102417" />
forbid-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102420" />
</frame>
<item id="102420" />
forbid
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102419" />
</frame>
<item id="102419" />
forklift
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102421" />
</frame>
<item id="102421" />
forms
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102422" />
</frame>
<item id="102422" />
fountain-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102424" />
</frame>
<item id="102424" />
fountain
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102423" />
</frame>
<item id="102423" />
frame-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102426" />
</frame>
<item id="102426" />
frame
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102425" />
</frame>
<item id="102425" />
free-rights
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102427" />
</frame>
<item id="102427" />
freeze-column
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102428" />
</frame>
<item id="102428" />
freeze-row-column
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102430" />
</frame>
<item id="102430" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 2431-2520 of 4964 SVG files.
Back to section index
freeze-row
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102429" />
</frame>
<item id="102429" />
fridge-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102432" />
</frame>
<item id="102432" />
fridge
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102431" />
</frame>
<item id="102431" />
friends-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102434" />
</frame>
<item id="102434" />
friends
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102433" />
</frame>
<item id="102433" />
frustum-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102436" />
</frame>
<item id="102436" />
frustum-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102437" />
</frame>
<item id="102437" />
frustum
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102435" />
</frame>
<item id="102435" />
function-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102439" />
</frame>
<item id="102439" />
function
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102438" />
</frame>
<item id="102438" />
galaxy
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102440" />
</frame>
<item id="102440" />
garden-cart-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102442" />
</frame>
<item id="102442" />
garden-cart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102441" />
</frame>
<item id="102441" />
gas-station-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102444" />
</frame>
<item id="102444" />
gas-station
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102443" />
</frame>
<item id="102443" />
gauge-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102446" />
</frame>
<item id="102446" />
gauge
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102445" />
</frame>
<item id="102445" />
gavel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102447" />
</frame>
<item id="102447" />
gender-agender
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102448" />
</frame>
<item id="102448" />
gender-androgyne
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102449" />
</frame>
<item id="102449" />
gender-bigender
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102450" />
</frame>
<item id="102450" />
gender-demiboy
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102451" />
</frame>
<item id="102451" />
gender-demigirl
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102452" />
</frame>
<item id="102452" />
gender-epicene
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102453" />
</frame>
<item id="102453" />
gender-female
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102454" />
</frame>
<item id="102454" />
gender-femme
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102455" />
</frame>
<item id="102455" />
gender-genderfluid
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102456" />
</frame>
<item id="102456" />
gender-genderless
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102457" />
</frame>
<item id="102457" />
gender-genderqueer
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102458" />
</frame>
<item id="102458" />
gender-hermaphrodite
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102459" />
</frame>
<item id="102459" />
gender-intergender
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102460" />
</frame>
<item id="102460" />
gender-male
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102461" />
</frame>
<item id="102461" />
gender-neutrois
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102462" />
</frame>
<item id="102462" />
gender-third
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102463" />
</frame>
<item id="102463" />
gender-transgender
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102464" />
</frame>
<item id="102464" />
gender-trasvesti
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102465" />
</frame>
<item id="102465" />
geometry
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102466" />
</frame>
<item id="102466" />
ghost-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102468" />
</frame>
<item id="102468" />
ghost-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102469" />
</frame>
<item id="102469" />
ghost-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102470" />
</frame>
<item id="102470" />
ghost
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102467" />
</frame>
<item id="102467" />
gif
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102471" />
</frame>
<item id="102471" />
gift-card
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102473" />
</frame>
<item id="102473" />
gift-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102474" />
</frame>
<item id="102474" />
gift
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102472" />
</frame>
<item id="102472" />
git-branch-deleted
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102476" />
</frame>
<item id="102476" />
git-branch
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102475" />
</frame>
<item id="102475" />
git-cherry-pick
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102477" />
</frame>
<item id="102477" />
git-commit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102478" />
</frame>
<item id="102478" />
git-compare
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102479" />
</frame>
<item id="102479" />
git-fork
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102480" />
</frame>
<item id="102480" />
git-merge
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102481" />
</frame>
<item id="102481" />
git-pull-request-closed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102483" />
</frame>
<item id="102483" />
git-pull-request-draft
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102484" />
</frame>
<item id="102484" />
git-pull-request
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102482" />
</frame>
<item id="102482" />
gizmo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102485" />
</frame>
<item id="102485" />
glass-champagne
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102487" />
</frame>
<item id="102487" />
glass-cocktail
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102488" />
</frame>
<item id="102488" />
glass-full
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102489" />
</frame>
<item id="102489" />
glass-gin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102490" />
</frame>
<item id="102490" />
glass-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102491" />
</frame>
<item id="102491" />
glass
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102486" />
</frame>
<item id="102486" />
globe-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102493" />
</frame>
<item id="102493" />
globe
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102492" />
</frame>
<item id="102492" />
go-game
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102494" />
</frame>
<item id="102494" />
golf-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102496" />
</frame>
<item id="102496" />
golf
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102495" />
</frame>
<item id="102495" />
gps
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102497" />
</frame>
<item id="102497" />
gradienter
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102498" />
</frame>
<item id="102498" />
grain
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102499" />
</frame>
<item id="102499" />
graph-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102501" />
</frame>
<item id="102501" />
graph
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102500" />
</frame>
<item id="102500" />
grave-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102503" />
</frame>
<item id="102503" />
grave
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102502" />
</frame>
<item id="102502" />
grid-3x3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102504" />
</frame>
<item id="102504" />
grid-4x4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102505" />
</frame>
<item id="102505" />
grid-dots
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102506" />
</frame>
<item id="102506" />
grid-goldenratio
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102507" />
</frame>
<item id="102507" />
grid-pattern
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102508" />
</frame>
<item id="102508" />
grid-scan
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102509" />
</frame>
<item id="102509" />
grill-fork
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102511" />
</frame>
<item id="102511" />
grill-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102512" />
</frame>
<item id="102512" />
grill-spatula
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102513" />
</frame>
<item id="102513" />
grill
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102510" />
</frame>
<item id="102510" />
grip-horizontal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102514" />
</frame>
<item id="102514" />
grip-vertical
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102515" />
</frame>
<item id="102515" />
growth
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102516" />
</frame>
<item id="102516" />
guitar-pick
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102517" />
</frame>
<item id="102517" />
gymnastics
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102518" />
</frame>
<item id="102518" />
h-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102519" />
</frame>
<item id="102519" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 2521-2610 of 4964 SVG files.
Back to section index
h-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102520" />
</frame>
<item id="102520" />
h-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102521" />
</frame>
<item id="102521" />
h-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102522" />
</frame>
<item id="102522" />
h-5
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102523" />
</frame>
<item id="102523" />
h-6
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102524" />
</frame>
<item id="102524" />
hammer-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102526" />
</frame>
<item id="102526" />
hammer
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102525" />
</frame>
<item id="102525" />
hand-click-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102528" />
</frame>
<item id="102528" />
hand-click
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102527" />
</frame>
<item id="102527" />
hand-finger-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102530" />
</frame>
<item id="102530" />
hand-finger-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102531" />
</frame>
<item id="102531" />
hand-finger-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102532" />
</frame>
<item id="102532" />
hand-finger-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102533" />
</frame>
<item id="102533" />
hand-finger
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102529" />
</frame>
<item id="102529" />
hand-grab
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102534" />
</frame>
<item id="102534" />
hand-little-finger
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102535" />
</frame>
<item id="102535" />
hand-love-you
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102536" />
</frame>
<item id="102536" />
hand-middle-finger
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102537" />
</frame>
<item id="102537" />
hand-move
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102538" />
</frame>
<item id="102538" />
hand-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102539" />
</frame>
<item id="102539" />
hand-ring-finger
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102540" />
</frame>
<item id="102540" />
hand-sanitizer
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102541" />
</frame>
<item id="102541" />
hand-stop
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102542" />
</frame>
<item id="102542" />
hand-three-fingers
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102543" />
</frame>
<item id="102543" />
hand-two-fingers
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102544" />
</frame>
<item id="102544" />
hanger-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102546" />
</frame>
<item id="102546" />
hanger-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102547" />
</frame>
<item id="102547" />
hanger
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102545" />
</frame>
<item id="102545" />
hash
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102548" />
</frame>
<item id="102548" />
haze-moon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102550" />
</frame>
<item id="102550" />
haze
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102549" />
</frame>
<item id="102549" />
hdr
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102551" />
</frame>
<item id="102551" />
heading-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102553" />
</frame>
<item id="102553" />
heading
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102552" />
</frame>
<item id="102552" />
headphones-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102555" />
</frame>
<item id="102555" />
headphones
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102554" />
</frame>
<item id="102554" />
headset-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102557" />
</frame>
<item id="102557" />
headset
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102556" />
</frame>
<item id="102556" />
health-recognition
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102558" />
</frame>
<item id="102558" />
heart-bitcoin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102560" />
</frame>
<item id="102560" />
heart-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102561" />
</frame>
<item id="102561" />
heart-broken
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102562" />
</frame>
<item id="102562" />
heart-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102563" />
</frame>
<item id="102563" />
heart-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102564" />
</frame>
<item id="102564" />
heart-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102565" />
</frame>
<item id="102565" />
heart-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102566" />
</frame>
<item id="102566" />
heart-discount
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102567" />
</frame>
<item id="102567" />
heart-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102568" />
</frame>
<item id="102568" />
heart-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102569" />
</frame>
<item id="102569" />
heart-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102570" />
</frame>
<item id="102570" />
heart-handshake
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102571" />
</frame>
<item id="102571" />
heart-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102572" />
</frame>
<item id="102572" />
heart-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102573" />
</frame>
<item id="102573" />
heart-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102574" />
</frame>
<item id="102574" />
heart-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102575" />
</frame>
<item id="102575" />
heart-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102576" />
</frame>
<item id="102576" />
heart-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102577" />
</frame>
<item id="102577" />
heart-rate-monitor
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102578" />
</frame>
<item id="102578" />
heart-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102579" />
</frame>
<item id="102579" />
heart-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102580" />
</frame>
<item id="102580" />
heart-spark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102581" />
</frame>
<item id="102581" />
heart-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102582" />
</frame>
<item id="102582" />
heart-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102583" />
</frame>
<item id="102583" />
heart-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102584" />
</frame>
<item id="102584" />
heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102559" />
</frame>
<item id="102559" />
heartbeat
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102585" />
</frame>
<item id="102585" />
hearts-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102587" />
</frame>
<item id="102587" />
hearts
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102586" />
</frame>
<item id="102586" />
helicopter-landing
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102589" />
</frame>
<item id="102589" />
helicopter
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102588" />
</frame>
<item id="102588" />
helmet-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102591" />
</frame>
<item id="102591" />
helmet
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102590" />
</frame>
<item id="102590" />
help-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102593" />
</frame>
<item id="102593" />
help-hexagon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102594" />
</frame>
<item id="102594" />
help-octagon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102595" />
</frame>
<item id="102595" />
help-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102596" />
</frame>
<item id="102596" />
help-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102597" />
</frame>
<item id="102597" />
help-square-rounded
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102599" />
</frame>
<item id="102599" />
help-square
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102598" />
</frame>
<item id="102598" />
help-triangle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102600" />
</frame>
<item id="102600" />
help
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102592" />
</frame>
<item id="102592" />
hemisphere-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102602" />
</frame>
<item id="102602" />
hemisphere-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102603" />
</frame>
<item id="102603" />
hemisphere
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102601" />
</frame>
<item id="102601" />
hexagon-3d
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102605" />
</frame>
<item id="102605" />
hexagon-letter-a
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102606" />
</frame>
<item id="102606" />
hexagon-letter-b
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102607" />
</frame>
<item id="102607" />
hexagon-letter-c
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102608" />
</frame>
<item id="102608" />
hexagon-letter-d
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102609" />
</frame>
<item id="102609" />
hexagon-letter-e
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102610" />
</frame>
<item id="102610" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 2611-2700 of 4964 SVG files.
Back to section index
hexagon-letter-f
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102611" />
</frame>
<item id="102611" />
hexagon-letter-g
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102612" />
</frame>
<item id="102612" />
hexagon-letter-h
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102613" />
</frame>
<item id="102613" />
hexagon-letter-i
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102614" />
</frame>
<item id="102614" />
hexagon-letter-j
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102615" />
</frame>
<item id="102615" />
hexagon-letter-k
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102616" />
</frame>
<item id="102616" />
hexagon-letter-l
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102617" />
</frame>
<item id="102617" />
hexagon-letter-m
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102618" />
</frame>
<item id="102618" />
hexagon-letter-n
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102619" />
</frame>
<item id="102619" />
hexagon-letter-o
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102620" />
</frame>
<item id="102620" />
hexagon-letter-p
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102621" />
</frame>
<item id="102621" />
hexagon-letter-q
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102622" />
</frame>
<item id="102622" />
hexagon-letter-r
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102623" />
</frame>
<item id="102623" />
hexagon-letter-s
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102624" />
</frame>
<item id="102624" />
hexagon-letter-t
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102625" />
</frame>
<item id="102625" />
hexagon-letter-u
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102626" />
</frame>
<item id="102626" />
hexagon-letter-v
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102627" />
</frame>
<item id="102627" />
hexagon-letter-w
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102628" />
</frame>
<item id="102628" />
hexagon-letter-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102629" />
</frame>
<item id="102629" />
hexagon-letter-y
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102630" />
</frame>
<item id="102630" />
hexagon-letter-z
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102631" />
</frame>
<item id="102631" />
hexagon-minus-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102633" />
</frame>
<item id="102633" />
hexagon-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102632" />
</frame>
<item id="102632" />
hexagon-number-0
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102634" />
</frame>
<item id="102634" />
hexagon-number-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102635" />
</frame>
<item id="102635" />
hexagon-number-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102636" />
</frame>
<item id="102636" />
hexagon-number-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102637" />
</frame>
<item id="102637" />
hexagon-number-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102638" />
</frame>
<item id="102638" />
hexagon-number-5
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102639" />
</frame>
<item id="102639" />
hexagon-number-6
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102640" />
</frame>
<item id="102640" />
hexagon-number-7
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102641" />
</frame>
<item id="102641" />
hexagon-number-8
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102642" />
</frame>
<item id="102642" />
hexagon-number-9
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102643" />
</frame>
<item id="102643" />
hexagon-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102644" />
</frame>
<item id="102644" />
hexagon-plus-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102646" />
</frame>
<item id="102646" />
hexagon-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102645" />
</frame>
<item id="102645" />
hexagon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102604" />
</frame>
<item id="102604" />
hexagonal-prism-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102648" />
</frame>
<item id="102648" />
hexagonal-prism-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102649" />
</frame>
<item id="102649" />
hexagonal-prism
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102647" />
</frame>
<item id="102647" />
hexagonal-pyramid-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102651" />
</frame>
<item id="102651" />
hexagonal-pyramid-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102652" />
</frame>
<item id="102652" />
hexagonal-pyramid
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102650" />
</frame>
<item id="102650" />
hexagons-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102654" />
</frame>
<item id="102654" />
hexagons
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102653" />
</frame>
<item id="102653" />
hierarchy-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102656" />
</frame>
<item id="102656" />
hierarchy-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102657" />
</frame>
<item id="102657" />
hierarchy-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102658" />
</frame>
<item id="102658" />
hierarchy
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102655" />
</frame>
<item id="102655" />
highlight-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102660" />
</frame>
<item id="102660" />
highlight
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102659" />
</frame>
<item id="102659" />
history-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102662" />
</frame>
<item id="102662" />
history-toggle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102663" />
</frame>
<item id="102663" />
history
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102661" />
</frame>
<item id="102661" />
home-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102665" />
</frame>
<item id="102665" />
home-bitcoin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102666" />
</frame>
<item id="102666" />
home-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102667" />
</frame>
<item id="102667" />
home-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102668" />
</frame>
<item id="102668" />
home-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102669" />
</frame>
<item id="102669" />
home-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102670" />
</frame>
<item id="102670" />
home-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102671" />
</frame>
<item id="102671" />
home-dot
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102672" />
</frame>
<item id="102672" />
home-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102673" />
</frame>
<item id="102673" />
home-eco
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102674" />
</frame>
<item id="102674" />
home-edit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102675" />
</frame>
<item id="102675" />
home-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102676" />
</frame>
<item id="102676" />
home-hand
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102677" />
</frame>
<item id="102677" />
home-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102678" />
</frame>
<item id="102678" />
home-infinity
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102679" />
</frame>
<item id="102679" />
home-link
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102680" />
</frame>
<item id="102680" />
home-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102681" />
</frame>
<item id="102681" />
home-move
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102682" />
</frame>
<item id="102682" />
home-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102683" />
</frame>
<item id="102683" />
home-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102684" />
</frame>
<item id="102684" />
home-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102685" />
</frame>
<item id="102685" />
home-ribbon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102686" />
</frame>
<item id="102686" />
home-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102687" />
</frame>
<item id="102687" />
home-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102688" />
</frame>
<item id="102688" />
home-shield
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102689" />
</frame>
<item id="102689" />
home-signal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102690" />
</frame>
<item id="102690" />
home-spark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102691" />
</frame>
<item id="102691" />
home-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102692" />
</frame>
<item id="102692" />
home-stats
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102693" />
</frame>
<item id="102693" />
home-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102694" />
</frame>
<item id="102694" />
home-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102695" />
</frame>
<item id="102695" />
home
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102664" />
</frame>
<item id="102664" />
horse-toy
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102697" />
</frame>
<item id="102697" />
horse
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102696" />
</frame>
<item id="102696" />
horseshoe
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102698" />
</frame>
<item id="102698" />
hospital-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102700" />
</frame>
<item id="102700" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 2701-2790 of 4964 SVG files.
Back to section index
hospital
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102699" />
</frame>
<item id="102699" />
hotel-service
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102701" />
</frame>
<item id="102701" />
hourglass-empty
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102703" />
</frame>
<item id="102703" />
hourglass-high
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102704" />
</frame>
<item id="102704" />
hourglass-low
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102705" />
</frame>
<item id="102705" />
hourglass-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102706" />
</frame>
<item id="102706" />
hourglass
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102702" />
</frame>
<item id="102702" />
hours-12
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102707" />
</frame>
<item id="102707" />
hours-24
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102708" />
</frame>
<item id="102708" />
html
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102709" />
</frame>
<item id="102709" />
http-connect-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102711" />
</frame>
<item id="102711" />
http-connect
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102710" />
</frame>
<item id="102710" />
http-delete-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102713" />
</frame>
<item id="102713" />
http-delete
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102712" />
</frame>
<item id="102712" />
http-get-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102715" />
</frame>
<item id="102715" />
http-get
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102714" />
</frame>
<item id="102714" />
http-head-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102717" />
</frame>
<item id="102717" />
http-head
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102716" />
</frame>
<item id="102716" />
http-options-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102719" />
</frame>
<item id="102719" />
http-options
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102718" />
</frame>
<item id="102718" />
http-patch-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102721" />
</frame>
<item id="102721" />
http-patch
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102720" />
</frame>
<item id="102720" />
http-post-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102723" />
</frame>
<item id="102723" />
http-post
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102722" />
</frame>
<item id="102722" />
http-put-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102725" />
</frame>
<item id="102725" />
http-put
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102724" />
</frame>
<item id="102724" />
http-que-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102727" />
</frame>
<item id="102727" />
http-que
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102726" />
</frame>
<item id="102726" />
http-trace-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102729" />
</frame>
<item id="102729" />
http-trace
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102728" />
</frame>
<item id="102728" />
ice-cream-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102731" />
</frame>
<item id="102731" />
ice-cream-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102732" />
</frame>
<item id="102732" />
ice-cream
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102730" />
</frame>
<item id="102730" />
ice-skating
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102733" />
</frame>
<item id="102733" />
icons-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102735" />
</frame>
<item id="102735" />
icons
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102734" />
</frame>
<item id="102734" />
id-badge-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102738" />
</frame>
<item id="102738" />
id-badge-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102739" />
</frame>
<item id="102739" />
id-badge
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102737" />
</frame>
<item id="102737" />
id-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102740" />
</frame>
<item id="102740" />
id
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102736" />
</frame>
<item id="102736" />
ikosaedr
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102741" />
</frame>
<item id="102741" />
image-in-picture
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102742" />
</frame>
<item id="102742" />
inbox-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102744" />
</frame>
<item id="102744" />
inbox
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102743" />
</frame>
<item id="102743" />
indent-decrease
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102745" />
</frame>
<item id="102745" />
indent-increase
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102746" />
</frame>
<item id="102746" />
infinity-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102748" />
</frame>
<item id="102748" />
infinity
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102747" />
</frame>
<item id="102747" />
info-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102749" />
</frame>
<item id="102749" />
info-hexagon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102750" />
</frame>
<item id="102750" />
info-octagon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102751" />
</frame>
<item id="102751" />
info-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102752" />
</frame>
<item id="102752" />
info-square-rounded
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102754" />
</frame>
<item id="102754" />
info-square
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102753" />
</frame>
<item id="102753" />
info-triangle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102755" />
</frame>
<item id="102755" />
inner-shadow-bottom-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102757" />
</frame>
<item id="102757" />
inner-shadow-bottom-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102758" />
</frame>
<item id="102758" />
inner-shadow-bottom
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102756" />
</frame>
<item id="102756" />
inner-shadow-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102759" />
</frame>
<item id="102759" />
inner-shadow-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102760" />
</frame>
<item id="102760" />
inner-shadow-top-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102762" />
</frame>
<item id="102762" />
inner-shadow-top-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102763" />
</frame>
<item id="102763" />
inner-shadow-top
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102761" />
</frame>
<item id="102761" />
input-ai
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102764" />
</frame>
<item id="102764" />
input-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102765" />
</frame>
<item id="102765" />
input-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102766" />
</frame>
<item id="102766" />
input-spark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102767" />
</frame>
<item id="102767" />
input-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102768" />
</frame>
<item id="102768" />
invoice
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102769" />
</frame>
<item id="102769" />
ironing-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102771" />
</frame>
<item id="102771" />
ironing-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102772" />
</frame>
<item id="102772" />
ironing-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102773" />
</frame>
<item id="102773" />
ironing-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102774" />
</frame>
<item id="102774" />
ironing-steam-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102776" />
</frame>
<item id="102776" />
ironing-steam
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102775" />
</frame>
<item id="102775" />
ironing
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102770" />
</frame>
<item id="102770" />
irregular-polyhedron-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102778" />
</frame>
<item id="102778" />
irregular-polyhedron-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102779" />
</frame>
<item id="102779" />
irregular-polyhedron
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102777" />
</frame>
<item id="102777" />
italic
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102780" />
</frame>
<item id="102780" />
jacket
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102781" />
</frame>
<item id="102781" />
jetpack
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102782" />
</frame>
<item id="102782" />
jewish-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102783" />
</frame>
<item id="102783" />
join-bevel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102784" />
</frame>
<item id="102784" />
join-round
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102785" />
</frame>
<item id="102785" />
join-straight
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102786" />
</frame>
<item id="102786" />
joker
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102787" />
</frame>
<item id="102787" />
jpg
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102788" />
</frame>
<item id="102788" />
json
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102789" />
</frame>
<item id="102789" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 2791-2880 of 4964 SVG files.
Back to section index
jump-rope
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102790" />
</frame>
<item id="102790" />
karate
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102791" />
</frame>
<item id="102791" />
kayak
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102792" />
</frame>
<item id="102792" />
kerning
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102793" />
</frame>
<item id="102793" />
key-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102795" />
</frame>
<item id="102795" />
key
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102794" />
</frame>
<item id="102794" />
keyboard-hide
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102797" />
</frame>
<item id="102797" />
keyboard-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102798" />
</frame>
<item id="102798" />
keyboard-show
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102799" />
</frame>
<item id="102799" />
keyboard
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102796" />
</frame>
<item id="102796" />
keyframe-align-center
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102801" />
</frame>
<item id="102801" />
keyframe-align-horizontal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102802" />
</frame>
<item id="102802" />
keyframe-align-vertical
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102803" />
</frame>
<item id="102803" />
keyframe
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102800" />
</frame>
<item id="102800" />
keyframes
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102804" />
</frame>
<item id="102804" />
label-important
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102806" />
</frame>
<item id="102806" />
label-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102807" />
</frame>
<item id="102807" />
label
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102805" />
</frame>
<item id="102805" />
ladder-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102809" />
</frame>
<item id="102809" />
ladder
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102808" />
</frame>
<item id="102808" />
ladle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102810" />
</frame>
<item id="102810" />
lambda
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102811" />
</frame>
<item id="102811" />
lamp-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102813" />
</frame>
<item id="102813" />
lamp-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102814" />
</frame>
<item id="102814" />
lamp
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102812" />
</frame>
<item id="102812" />
lane
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102815" />
</frame>
<item id="102815" />
language-hiragana
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102817" />
</frame>
<item id="102817" />
language-katakana
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102818" />
</frame>
<item id="102818" />
language-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102819" />
</frame>
<item id="102819" />
language
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102816" />
</frame>
<item id="102816" />
lasso-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102821" />
</frame>
<item id="102821" />
lasso-polygon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102822" />
</frame>
<item id="102822" />
lasso
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102820" />
</frame>
<item id="102820" />
laurel-wreath-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102824" />
</frame>
<item id="102824" />
laurel-wreath-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102825" />
</frame>
<item id="102825" />
laurel-wreath-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102826" />
</frame>
<item id="102826" />
laurel-wreath
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102823" />
</frame>
<item id="102823" />
layers-difference
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102827" />
</frame>
<item id="102827" />
layers-intersect-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102829" />
</frame>
<item id="102829" />
layers-intersect
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102828" />
</frame>
<item id="102828" />
layers-linked
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102830" />
</frame>
<item id="102830" />
layers-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102831" />
</frame>
<item id="102831" />
layers-selected-bottom
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102833" />
</frame>
<item id="102833" />
layers-selected
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102832" />
</frame>
<item id="102832" />
layers-subtract
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102834" />
</frame>
<item id="102834" />
layers-union
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102835" />
</frame>
<item id="102835" />
layout-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102837" />
</frame>
<item id="102837" />
layout-align-bottom
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102838" />
</frame>
<item id="102838" />
layout-align-center
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102839" />
</frame>
<item id="102839" />
layout-align-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102840" />
</frame>
<item id="102840" />
layout-align-middle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102841" />
</frame>
<item id="102841" />
layout-align-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102842" />
</frame>
<item id="102842" />
layout-align-top
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102843" />
</frame>
<item id="102843" />
layout-board-split
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102845" />
</frame>
<item id="102845" />
layout-board
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102844" />
</frame>
<item id="102844" />
layout-bottombar-collapse
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102847" />
</frame>
<item id="102847" />
layout-bottombar-expand
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102848" />
</frame>
<item id="102848" />
layout-bottombar-inactive
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102849" />
</frame>
<item id="102849" />
layout-bottombar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102846" />
</frame>
<item id="102846" />
layout-cards
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102850" />
</frame>
<item id="102850" />
layout-collage
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102851" />
</frame>
<item id="102851" />
layout-columns
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102852" />
</frame>
<item id="102852" />
layout-dashboard
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102853" />
</frame>
<item id="102853" />
layout-distribute-horizontal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102854" />
</frame>
<item id="102854" />
layout-distribute-vertical
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102855" />
</frame>
<item id="102855" />
layout-grid-add
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102857" />
</frame>
<item id="102857" />
layout-grid-remove
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102858" />
</frame>
<item id="102858" />
layout-grid
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102856" />
</frame>
<item id="102856" />
layout-kanban
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102859" />
</frame>
<item id="102859" />
layout-list
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102860" />
</frame>
<item id="102860" />
layout-navbar-collapse
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102862" />
</frame>
<item id="102862" />
layout-navbar-expand
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102863" />
</frame>
<item id="102863" />
layout-navbar-inactive
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102864" />
</frame>
<item id="102864" />
layout-navbar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102861" />
</frame>
<item id="102861" />
layout-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102865" />
</frame>
<item id="102865" />
layout-rows
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102866" />
</frame>
<item id="102866" />
layout-sidebar-inactive
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102868" />
</frame>
<item id="102868" />
layout-sidebar-left-collapse
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102869" />
</frame>
<item id="102869" />
layout-sidebar-left-expand
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102870" />
</frame>
<item id="102870" />
layout-sidebar-right-collapse
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102872" />
</frame>
<item id="102872" />
layout-sidebar-right-expand
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102873" />
</frame>
<item id="102873" />
layout-sidebar-right-inactive
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102874" />
</frame>
<item id="102874" />
layout-sidebar-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102871" />
</frame>
<item id="102871" />
layout-sidebar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102867" />
</frame>
<item id="102867" />
layout
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102836" />
</frame>
<item id="102836" />
leaf-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102876" />
</frame>
<item id="102876" />
leaf-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102877" />
</frame>
<item id="102877" />
leaf
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102875" />
</frame>
<item id="102875" />
lego-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102879" />
</frame>
<item id="102879" />
lego
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102878" />
</frame>
<item id="102878" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 2881-2970 of 4964 SVG files.
Back to section index
lemon-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102881" />
</frame>
<item id="102881" />
lemon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102880" />
</frame>
<item id="102880" />
letter-a-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102883" />
</frame>
<item id="102883" />
letter-a
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102882" />
</frame>
<item id="102882" />
letter-b-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102885" />
</frame>
<item id="102885" />
letter-b
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102884" />
</frame>
<item id="102884" />
letter-c-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102887" />
</frame>
<item id="102887" />
letter-c
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102886" />
</frame>
<item id="102886" />
letter-case-lower
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102889" />
</frame>
<item id="102889" />
letter-case-toggle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102890" />
</frame>
<item id="102890" />
letter-case-upper
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102891" />
</frame>
<item id="102891" />
letter-case
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102888" />
</frame>
<item id="102888" />
letter-d-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102893" />
</frame>
<item id="102893" />
letter-d
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102892" />
</frame>
<item id="102892" />
letter-e-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102895" />
</frame>
<item id="102895" />
letter-e
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102894" />
</frame>
<item id="102894" />
letter-f-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102897" />
</frame>
<item id="102897" />
letter-f
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102896" />
</frame>
<item id="102896" />
letter-g-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102899" />
</frame>
<item id="102899" />
letter-g
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102898" />
</frame>
<item id="102898" />
letter-h-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102901" />
</frame>
<item id="102901" />
letter-h
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102900" />
</frame>
<item id="102900" />
letter-i-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102903" />
</frame>
<item id="102903" />
letter-i
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102902" />
</frame>
<item id="102902" />
letter-j-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102905" />
</frame>
<item id="102905" />
letter-j
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102904" />
</frame>
<item id="102904" />
letter-k-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102907" />
</frame>
<item id="102907" />
letter-k
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102906" />
</frame>
<item id="102906" />
letter-l-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102909" />
</frame>
<item id="102909" />
letter-l
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102908" />
</frame>
<item id="102908" />
letter-m-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102911" />
</frame>
<item id="102911" />
letter-m
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102910" />
</frame>
<item id="102910" />
letter-n-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102913" />
</frame>
<item id="102913" />
letter-n
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102912" />
</frame>
<item id="102912" />
letter-o-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102915" />
</frame>
<item id="102915" />
letter-o
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102914" />
</frame>
<item id="102914" />
letter-p-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102917" />
</frame>
<item id="102917" />
letter-p
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102916" />
</frame>
<item id="102916" />
letter-q-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102919" />
</frame>
<item id="102919" />
letter-q
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102918" />
</frame>
<item id="102918" />
letter-r-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102921" />
</frame>
<item id="102921" />
letter-r
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102920" />
</frame>
<item id="102920" />
letter-s-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102923" />
</frame>
<item id="102923" />
letter-s
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102922" />
</frame>
<item id="102922" />
letter-spacing
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102924" />
</frame>
<item id="102924" />
letter-t-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102926" />
</frame>
<item id="102926" />
letter-t
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102925" />
</frame>
<item id="102925" />
letter-u-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102928" />
</frame>
<item id="102928" />
letter-u
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102927" />
</frame>
<item id="102927" />
letter-v-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102930" />
</frame>
<item id="102930" />
letter-v
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102929" />
</frame>
<item id="102929" />
letter-w-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102932" />
</frame>
<item id="102932" />
letter-w
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102931" />
</frame>
<item id="102931" />
letter-x-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102934" />
</frame>
<item id="102934" />
letter-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102933" />
</frame>
<item id="102933" />
letter-y-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102936" />
</frame>
<item id="102936" />
letter-y
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102935" />
</frame>
<item id="102935" />
letter-z-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102938" />
</frame>
<item id="102938" />
letter-z
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102937" />
</frame>
<item id="102937" />
library-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102940" />
</frame>
<item id="102940" />
library-photo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102941" />
</frame>
<item id="102941" />
library-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102942" />
</frame>
<item id="102942" />
library
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102939" />
</frame>
<item id="102939" />
license-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102944" />
</frame>
<item id="102944" />
license
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102943" />
</frame>
<item id="102943" />
lifebuoy-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102946" />
</frame>
<item id="102946" />
lifebuoy
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102945" />
</frame>
<item id="102945" />
lighter
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102947" />
</frame>
<item id="102947" />
line-dashed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102949" />
</frame>
<item id="102949" />
line-dotted
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102950" />
</frame>
<item id="102950" />
line-height
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102951" />
</frame>
<item id="102951" />
line-scan
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102952" />
</frame>
<item id="102952" />
line
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102948" />
</frame>
<item id="102948" />
link-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102954" />
</frame>
<item id="102954" />
link-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102955" />
</frame>
<item id="102955" />
link-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102956" />
</frame>
<item id="102956" />
link
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102953" />
</frame>
<item id="102953" />
list-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102958" />
</frame>
<item id="102958" />
list-details
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102959" />
</frame>
<item id="102959" />
list-letters
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102960" />
</frame>
<item id="102960" />
list-numbers
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102961" />
</frame>
<item id="102961" />
list-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102962" />
</frame>
<item id="102962" />
list-tree
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102963" />
</frame>
<item id="102963" />
list
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102957" />
</frame>
<item id="102957" />
live-photo-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102965" />
</frame>
<item id="102965" />
live-photo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102964" />
</frame>
<item id="102964" />
live-view
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102966" />
</frame>
<item id="102966" />
load-balancer
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102967" />
</frame>
<item id="102967" />
loader-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102969" />
</frame>
<item id="102969" />
loader-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102970" />
</frame>
<item id="102970" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 2971-3060 of 4964 SVG files.
Back to section index
loader-quarter
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102971" />
</frame>
<item id="102971" />
loader
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102968" />
</frame>
<item id="102968" />
location-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102973" />
</frame>
<item id="102973" />
location-broken
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102974" />
</frame>
<item id="102974" />
location-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102975" />
</frame>
<item id="102975" />
location-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102976" />
</frame>
<item id="102976" />
location-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102977" />
</frame>
<item id="102977" />
location-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102978" />
</frame>
<item id="102978" />
location-discount
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102979" />
</frame>
<item id="102979" />
location-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102980" />
</frame>
<item id="102980" />
location-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102981" />
</frame>
<item id="102981" />
location-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102982" />
</frame>
<item id="102982" />
location-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102983" />
</frame>
<item id="102983" />
location-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102984" />
</frame>
<item id="102984" />
location-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102985" />
</frame>
<item id="102985" />
location-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102986" />
</frame>
<item id="102986" />
location-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102987" />
</frame>
<item id="102987" />
location-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102988" />
</frame>
<item id="102988" />
location-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102989" />
</frame>
<item id="102989" />
location-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102990" />
</frame>
<item id="102990" />
location-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102991" />
</frame>
<item id="102991" />
location-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102992" />
</frame>
<item id="102992" />
location-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102993" />
</frame>
<item id="102993" />
location-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102994" />
</frame>
<item id="102994" />
location
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102972" />
</frame>
<item id="102972" />
lock-access-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102997" />
</frame>
<item id="102997" />
lock-access
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102996" />
</frame>
<item id="102996" />
lock-bitcoin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102998" />
</frame>
<item id="102998" />
lock-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102999" />
</frame>
<item id="102999" />
lock-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103000" />
</frame>
<item id="103000" />
lock-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103001" />
</frame>
<item id="103001" />
lock-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103002" />
</frame>
<item id="103002" />
lock-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103003" />
</frame>
<item id="103003" />
lock-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103004" />
</frame>
<item id="103004" />
lock-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103005" />
</frame>
<item id="103005" />
lock-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103006" />
</frame>
<item id="103006" />
lock-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103007" />
</frame>
<item id="103007" />
lock-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103008" />
</frame>
<item id="103008" />
lock-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103009" />
</frame>
<item id="103009" />
lock-open-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103011" />
</frame>
<item id="103011" />
lock-open-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103012" />
</frame>
<item id="103012" />
lock-open
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103010" />
</frame>
<item id="103010" />
lock-password
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103013" />
</frame>
<item id="103013" />
lock-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103014" />
</frame>
<item id="103014" />
lock-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103015" />
</frame>
<item id="103015" />
lock-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103016" />
</frame>
<item id="103016" />
lock-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103017" />
</frame>
<item id="103017" />
lock-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103018" />
</frame>
<item id="103018" />
lock-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103019" />
</frame>
<item id="103019" />
lock-square-rounded
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103021" />
</frame>
<item id="103021" />
lock-square
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103020" />
</frame>
<item id="103020" />
lock-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103022" />
</frame>
<item id="103022" />
lock-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103023" />
</frame>
<item id="103023" />
lock-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103024" />
</frame>
<item id="103024" />
lock
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="102995" />
</frame>
<item id="102995" />
logic-and
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103025" />
</frame>
<item id="103025" />
logic-buffer
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103026" />
</frame>
<item id="103026" />
logic-nand
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103027" />
</frame>
<item id="103027" />
logic-nor
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103028" />
</frame>
<item id="103028" />
logic-not
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103029" />
</frame>
<item id="103029" />
logic-or
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103030" />
</frame>
<item id="103030" />
logic-xnor
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103031" />
</frame>
<item id="103031" />
logic-xor
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103032" />
</frame>
<item id="103032" />
login-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103034" />
</frame>
<item id="103034" />
login
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103033" />
</frame>
<item id="103033" />
logout-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103036" />
</frame>
<item id="103036" />
logout
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103035" />
</frame>
<item id="103035" />
logs
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103037" />
</frame>
<item id="103037" />
lollipop-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103039" />
</frame>
<item id="103039" />
lollipop
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103038" />
</frame>
<item id="103038" />
luggage-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103041" />
</frame>
<item id="103041" />
luggage
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103040" />
</frame>
<item id="103040" />
lungs-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103043" />
</frame>
<item id="103043" />
lungs
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103042" />
</frame>
<item id="103042" />
macro-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103045" />
</frame>
<item id="103045" />
macro
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103044" />
</frame>
<item id="103044" />
magnet-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103047" />
</frame>
<item id="103047" />
magnet
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103046" />
</frame>
<item id="103046" />
magnetic
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103048" />
</frame>
<item id="103048" />
mail-ai
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103050" />
</frame>
<item id="103050" />
mail-bitcoin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103051" />
</frame>
<item id="103051" />
mail-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103052" />
</frame>
<item id="103052" />
mail-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103053" />
</frame>
<item id="103053" />
mail-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103054" />
</frame>
<item id="103054" />
mail-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103055" />
</frame>
<item id="103055" />
mail-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103056" />
</frame>
<item id="103056" />
mail-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103057" />
</frame>
<item id="103057" />
mail-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103058" />
</frame>
<item id="103058" />
mail-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103059" />
</frame>
<item id="103059" />
mail-fast
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103060" />
</frame>
<item id="103060" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 3061-3150 of 4964 SVG files.
Back to section index
mail-forward
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103061" />
</frame>
<item id="103061" />
mail-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103062" />
</frame>
<item id="103062" />
mail-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103063" />
</frame>
<item id="103063" />
mail-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103064" />
</frame>
<item id="103064" />
mail-opened
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103065" />
</frame>
<item id="103065" />
mail-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103066" />
</frame>
<item id="103066" />
mail-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103067" />
</frame>
<item id="103067" />
mail-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103068" />
</frame>
<item id="103068" />
mail-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103069" />
</frame>
<item id="103069" />
mail-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103070" />
</frame>
<item id="103070" />
mail-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103071" />
</frame>
<item id="103071" />
mail-spark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103072" />
</frame>
<item id="103072" />
mail-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103073" />
</frame>
<item id="103073" />
mail-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103074" />
</frame>
<item id="103074" />
mail-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103075" />
</frame>
<item id="103075" />
mail
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103049" />
</frame>
<item id="103049" />
mailbox-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103077" />
</frame>
<item id="103077" />
mailbox
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103076" />
</frame>
<item id="103076" />
man
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103078" />
</frame>
<item id="103078" />
manual-gearbox
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103079" />
</frame>
<item id="103079" />
map-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103081" />
</frame>
<item id="103081" />
map-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103082" />
</frame>
<item id="103082" />
map-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103083" />
</frame>
<item id="103083" />
map-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103084" />
</frame>
<item id="103084" />
map-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103085" />
</frame>
<item id="103085" />
map-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103086" />
</frame>
<item id="103086" />
map-discount
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103087" />
</frame>
<item id="103087" />
map-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103088" />
</frame>
<item id="103088" />
map-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103089" />
</frame>
<item id="103089" />
map-east
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103090" />
</frame>
<item id="103090" />
map-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103091" />
</frame>
<item id="103091" />
map-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103092" />
</frame>
<item id="103092" />
map-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103093" />
</frame>
<item id="103093" />
map-north
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103094" />
</frame>
<item id="103094" />
map-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103095" />
</frame>
<item id="103095" />
map-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103096" />
</frame>
<item id="103096" />
map-pin-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103098" />
</frame>
<item id="103098" />
map-pin-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103099" />
</frame>
<item id="103099" />
map-pin-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103100" />
</frame>
<item id="103100" />
map-pin-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103101" />
</frame>
<item id="103101" />
map-pin-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103102" />
</frame>
<item id="103102" />
map-pin-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103103" />
</frame>
<item id="103103" />
map-pin-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103104" />
</frame>
<item id="103104" />
map-pin-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103105" />
</frame>
<item id="103105" />
map-pin-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103106" />
</frame>
<item id="103106" />
map-pin-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103107" />
</frame>
<item id="103107" />
map-pin-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103108" />
</frame>
<item id="103108" />
map-pin-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103109" />
</frame>
<item id="103109" />
map-pin-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103110" />
</frame>
<item id="103110" />
map-pin-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103111" />
</frame>
<item id="103111" />
map-pin-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103112" />
</frame>
<item id="103112" />
map-pin-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103113" />
</frame>
<item id="103113" />
map-pin-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103114" />
</frame>
<item id="103114" />
map-pin-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103115" />
</frame>
<item id="103115" />
map-pin-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103116" />
</frame>
<item id="103116" />
map-pin-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103117" />
</frame>
<item id="103117" />
map-pin-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103118" />
</frame>
<item id="103118" />
map-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103097" />
</frame>
<item id="103097" />
map-pins
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103119" />
</frame>
<item id="103119" />
map-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103120" />
</frame>
<item id="103120" />
map-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103121" />
</frame>
<item id="103121" />
map-route
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103122" />
</frame>
<item id="103122" />
map-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103123" />
</frame>
<item id="103123" />
map-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103124" />
</frame>
<item id="103124" />
map-south
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103125" />
</frame>
<item id="103125" />
map-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103126" />
</frame>
<item id="103126" />
map-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103127" />
</frame>
<item id="103127" />
map-west
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103128" />
</frame>
<item id="103128" />
map-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103129" />
</frame>
<item id="103129" />
map
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103080" />
</frame>
<item id="103080" />
markdown-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103131" />
</frame>
<item id="103131" />
markdown
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103130" />
</frame>
<item id="103130" />
marquee-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103133" />
</frame>
<item id="103133" />
marquee-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103134" />
</frame>
<item id="103134" />
marquee
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103132" />
</frame>
<item id="103132" />
mars
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103135" />
</frame>
<item id="103135" />
mask-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103137" />
</frame>
<item id="103137" />
mask
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103136" />
</frame>
<item id="103136" />
masks-theater-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103139" />
</frame>
<item id="103139" />
masks-theater
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103138" />
</frame>
<item id="103138" />
massage
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103140" />
</frame>
<item id="103140" />
matchstick
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103141" />
</frame>
<item id="103141" />
math-1-divide-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103143" />
</frame>
<item id="103143" />
math-1-divide-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103144" />
</frame>
<item id="103144" />
math-avg
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103145" />
</frame>
<item id="103145" />
math-cos
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103146" />
</frame>
<item id="103146" />
math-ctg
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103147" />
</frame>
<item id="103147" />
math-equal-greater
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103148" />
</frame>
<item id="103148" />
math-equal-lower
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103149" />
</frame>
<item id="103149" />
math-function-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103151" />
</frame>
<item id="103151" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 3151-3240 of 4964 SVG files.
Back to section index
math-function-y
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103152" />
</frame>
<item id="103152" />
math-function
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103150" />
</frame>
<item id="103150" />
math-greater
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103153" />
</frame>
<item id="103153" />
math-integral-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103155" />
</frame>
<item id="103155" />
math-integral
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103154" />
</frame>
<item id="103154" />
math-integrals
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103156" />
</frame>
<item id="103156" />
math-lower
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103157" />
</frame>
<item id="103157" />
math-max-min
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103159" />
</frame>
<item id="103159" />
math-max
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103158" />
</frame>
<item id="103158" />
math-min
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103160" />
</frame>
<item id="103160" />
math-not
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103161" />
</frame>
<item id="103161" />
math-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103162" />
</frame>
<item id="103162" />
math-pi-divide-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103164" />
</frame>
<item id="103164" />
math-pi
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103163" />
</frame>
<item id="103163" />
math-sec
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103165" />
</frame>
<item id="103165" />
math-sin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103166" />
</frame>
<item id="103166" />
math-symbols
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103167" />
</frame>
<item id="103167" />
math-tg
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103168" />
</frame>
<item id="103168" />
math-x-divide-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103169" />
</frame>
<item id="103169" />
math-x-divide-y-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103171" />
</frame>
<item id="103171" />
math-x-divide-y
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103170" />
</frame>
<item id="103170" />
math-x-floor-divide-y
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103172" />
</frame>
<item id="103172" />
math-x-minus-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103173" />
</frame>
<item id="103173" />
math-x-minus-y
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103174" />
</frame>
<item id="103174" />
math-x-plus-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103175" />
</frame>
<item id="103175" />
math-x-plus-y
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103176" />
</frame>
<item id="103176" />
math-xy
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103177" />
</frame>
<item id="103177" />
math-y-minus-y
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103178" />
</frame>
<item id="103178" />
math-y-plus-y
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103179" />
</frame>
<item id="103179" />
math
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103142" />
</frame>
<item id="103142" />
matrix
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103180" />
</frame>
<item id="103180" />
maximize-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103182" />
</frame>
<item id="103182" />
maximize
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103181" />
</frame>
<item id="103181" />
meat-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103184" />
</frame>
<item id="103184" />
meat
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103183" />
</frame>
<item id="103183" />
medal-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103186" />
</frame>
<item id="103186" />
medal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103185" />
</frame>
<item id="103185" />
medical-cross-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103188" />
</frame>
<item id="103188" />
medical-cross-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103189" />
</frame>
<item id="103189" />
medical-cross
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103187" />
</frame>
<item id="103187" />
medicine-syrup
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103190" />
</frame>
<item id="103190" />
meeple
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103191" />
</frame>
<item id="103191" />
melon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103192" />
</frame>
<item id="103192" />
menorah
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103193" />
</frame>
<item id="103193" />
menu-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103195" />
</frame>
<item id="103195" />
menu-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103196" />
</frame>
<item id="103196" />
menu-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103197" />
</frame>
<item id="103197" />
menu-deep
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103198" />
</frame>
<item id="103198" />
menu-order
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103199" />
</frame>
<item id="103199" />
menu
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103194" />
</frame>
<item id="103194" />
message-2-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103202" />
</frame>
<item id="103202" />
message-2-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103203" />
</frame>
<item id="103203" />
message-2-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103204" />
</frame>
<item id="103204" />
message-2-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103205" />
</frame>
<item id="103205" />
message-2-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103206" />
</frame>
<item id="103206" />
message-2-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103207" />
</frame>
<item id="103207" />
message-2-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103208" />
</frame>
<item id="103208" />
message-2-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103209" />
</frame>
<item id="103209" />
message-2-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103210" />
</frame>
<item id="103210" />
message-2-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103211" />
</frame>
<item id="103211" />
message-2-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103212" />
</frame>
<item id="103212" />
message-2-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103213" />
</frame>
<item id="103213" />
message-2-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103214" />
</frame>
<item id="103214" />
message-2-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103215" />
</frame>
<item id="103215" />
message-2-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103216" />
</frame>
<item id="103216" />
message-2-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103217" />
</frame>
<item id="103217" />
message-2-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103218" />
</frame>
<item id="103218" />
message-2-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103219" />
</frame>
<item id="103219" />
message-2-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103220" />
</frame>
<item id="103220" />
message-2-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103221" />
</frame>
<item id="103221" />
message-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103201" />
</frame>
<item id="103201" />
message-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103222" />
</frame>
<item id="103222" />
message-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103223" />
</frame>
<item id="103223" />
message-chatbot
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103224" />
</frame>
<item id="103224" />
message-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103225" />
</frame>
<item id="103225" />
message-circle-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103227" />
</frame>
<item id="103227" />
message-circle-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103228" />
</frame>
<item id="103228" />
message-circle-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103229" />
</frame>
<item id="103229" />
message-circle-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103230" />
</frame>
<item id="103230" />
message-circle-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103231" />
</frame>
<item id="103231" />
message-circle-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103232" />
</frame>
<item id="103232" />
message-circle-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103233" />
</frame>
<item id="103233" />
message-circle-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103234" />
</frame>
<item id="103234" />
message-circle-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103235" />
</frame>
<item id="103235" />
message-circle-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103236" />
</frame>
<item id="103236" />
message-circle-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103237" />
</frame>
<item id="103237" />
message-circle-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103238" />
</frame>
<item id="103238" />
message-circle-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103239" />
</frame>
<item id="103239" />
message-circle-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103240" />
</frame>
<item id="103240" />
message-circle-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103241" />
</frame>
<item id="103241" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 3241-3330 of 4964 SVG files.
Back to section index
message-circle-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103242" />
</frame>
<item id="103242" />
message-circle-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103243" />
</frame>
<item id="103243" />
message-circle-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103244" />
</frame>
<item id="103244" />
message-circle-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103245" />
</frame>
<item id="103245" />
message-circle-user
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103246" />
</frame>
<item id="103246" />
message-circle-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103247" />
</frame>
<item id="103247" />
message-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103226" />
</frame>
<item id="103226" />
message-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103248" />
</frame>
<item id="103248" />
message-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103249" />
</frame>
<item id="103249" />
message-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103250" />
</frame>
<item id="103250" />
message-dots
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103251" />
</frame>
<item id="103251" />
message-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103252" />
</frame>
<item id="103252" />
message-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103253" />
</frame>
<item id="103253" />
message-forward
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103254" />
</frame>
<item id="103254" />
message-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103255" />
</frame>
<item id="103255" />
message-language
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103256" />
</frame>
<item id="103256" />
message-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103257" />
</frame>
<item id="103257" />
message-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103258" />
</frame>
<item id="103258" />
message-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103259" />
</frame>
<item id="103259" />
message-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103260" />
</frame>
<item id="103260" />
message-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103261" />
</frame>
<item id="103261" />
message-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103262" />
</frame>
<item id="103262" />
message-reply
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103263" />
</frame>
<item id="103263" />
message-report
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103264" />
</frame>
<item id="103264" />
message-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103265" />
</frame>
<item id="103265" />
message-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103266" />
</frame>
<item id="103266" />
message-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103267" />
</frame>
<item id="103267" />
message-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103268" />
</frame>
<item id="103268" />
message-user
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103269" />
</frame>
<item id="103269" />
message-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103270" />
</frame>
<item id="103270" />
message
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103200" />
</frame>
<item id="103200" />
messages-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103272" />
</frame>
<item id="103272" />
messages
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103271" />
</frame>
<item id="103271" />
meteor-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103274" />
</frame>
<item id="103274" />
meteor
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103273" />
</frame>
<item id="103273" />
meter-cube
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103275" />
</frame>
<item id="103275" />
meter-square
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103276" />
</frame>
<item id="103276" />
metronome
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103277" />
</frame>
<item id="103277" />
michelin-bib-gourmand
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103278" />
</frame>
<item id="103278" />
michelin-star-green
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103280" />
</frame>
<item id="103280" />
michelin-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103279" />
</frame>
<item id="103279" />
mickey
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103281" />
</frame>
<item id="103281" />
microphone-2-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103284" />
</frame>
<item id="103284" />
microphone-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103283" />
</frame>
<item id="103283" />
microphone-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103285" />
</frame>
<item id="103285" />
microphone
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103282" />
</frame>
<item id="103282" />
microscope-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103287" />
</frame>
<item id="103287" />
microscope
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103286" />
</frame>
<item id="103286" />
microwave-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103289" />
</frame>
<item id="103289" />
microwave
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103288" />
</frame>
<item id="103288" />
military-award
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103290" />
</frame>
<item id="103290" />
military-rank
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103291" />
</frame>
<item id="103291" />
milk-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103293" />
</frame>
<item id="103293" />
milk
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103292" />
</frame>
<item id="103292" />
milkshake
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103294" />
</frame>
<item id="103294" />
minimize
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103295" />
</frame>
<item id="103295" />
minus-vertical
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103297" />
</frame>
<item id="103297" />
minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103296" />
</frame>
<item id="103296" />
mist-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103299" />
</frame>
<item id="103299" />
mist
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103298" />
</frame>
<item id="103298" />
mobiledata-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103301" />
</frame>
<item id="103301" />
mobiledata
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103300" />
</frame>
<item id="103300" />
moneybag-edit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103303" />
</frame>
<item id="103303" />
moneybag-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103304" />
</frame>
<item id="103304" />
moneybag-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103305" />
</frame>
<item id="103305" />
moneybag-move-back
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103307" />
</frame>
<item id="103307" />
moneybag-move
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103306" />
</frame>
<item id="103306" />
moneybag-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103308" />
</frame>
<item id="103308" />
moneybag
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103302" />
</frame>
<item id="103302" />
monkeybar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103309" />
</frame>
<item id="103309" />
mood-angry
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103310" />
</frame>
<item id="103310" />
mood-annoyed-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103312" />
</frame>
<item id="103312" />
mood-annoyed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103311" />
</frame>
<item id="103311" />
mood-bitcoin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103313" />
</frame>
<item id="103313" />
mood-boy
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103314" />
</frame>
<item id="103314" />
mood-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103315" />
</frame>
<item id="103315" />
mood-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103316" />
</frame>
<item id="103316" />
mood-confuzed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103317" />
</frame>
<item id="103317" />
mood-crazy-happy
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103318" />
</frame>
<item id="103318" />
mood-cry
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103319" />
</frame>
<item id="103319" />
mood-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103320" />
</frame>
<item id="103320" />
mood-edit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103321" />
</frame>
<item id="103321" />
mood-empty
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103322" />
</frame>
<item id="103322" />
mood-happy
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103323" />
</frame>
<item id="103323" />
mood-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103324" />
</frame>
<item id="103324" />
mood-kid
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103325" />
</frame>
<item id="103325" />
mood-look-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103326" />
</frame>
<item id="103326" />
mood-look-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103327" />
</frame>
<item id="103327" />
mood-look-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103328" />
</frame>
<item id="103328" />
mood-look-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103329" />
</frame>
<item id="103329" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 3331-3420 of 4964 SVG files.
Back to section index
mood-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103330" />
</frame>
<item id="103330" />
mood-nerd
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103331" />
</frame>
<item id="103331" />
mood-nervous
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103332" />
</frame>
<item id="103332" />
mood-neutral
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103333" />
</frame>
<item id="103333" />
mood-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103334" />
</frame>
<item id="103334" />
mood-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103335" />
</frame>
<item id="103335" />
mood-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103336" />
</frame>
<item id="103336" />
mood-puzzled
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103337" />
</frame>
<item id="103337" />
mood-sad-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103339" />
</frame>
<item id="103339" />
mood-sad-dizzy
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103340" />
</frame>
<item id="103340" />
mood-sad-squint
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103341" />
</frame>
<item id="103341" />
mood-sad
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103338" />
</frame>
<item id="103338" />
mood-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103342" />
</frame>
<item id="103342" />
mood-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103343" />
</frame>
<item id="103343" />
mood-sick
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103344" />
</frame>
<item id="103344" />
mood-silence
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103345" />
</frame>
<item id="103345" />
mood-sing
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103346" />
</frame>
<item id="103346" />
mood-smile-beam
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103348" />
</frame>
<item id="103348" />
mood-smile-dizzy
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103349" />
</frame>
<item id="103349" />
mood-smile
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103347" />
</frame>
<item id="103347" />
mood-spark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103350" />
</frame>
<item id="103350" />
mood-surprised
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103351" />
</frame>
<item id="103351" />
mood-tongue-wink-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103354" />
</frame>
<item id="103354" />
mood-tongue-wink
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103353" />
</frame>
<item id="103353" />
mood-tongue
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103352" />
</frame>
<item id="103352" />
mood-unamused
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103355" />
</frame>
<item id="103355" />
mood-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103356" />
</frame>
<item id="103356" />
mood-wink-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103358" />
</frame>
<item id="103358" />
mood-wink
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103357" />
</frame>
<item id="103357" />
mood-wrrr
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103359" />
</frame>
<item id="103359" />
mood-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103360" />
</frame>
<item id="103360" />
mood-xd
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103361" />
</frame>
<item id="103361" />
moon-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103363" />
</frame>
<item id="103363" />
moon-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103364" />
</frame>
<item id="103364" />
moon-stars
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103365" />
</frame>
<item id="103365" />
moon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103362" />
</frame>
<item id="103362" />
moped
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103366" />
</frame>
<item id="103366" />
motorbike
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103367" />
</frame>
<item id="103367" />
mountain-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103369" />
</frame>
<item id="103369" />
mountain
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103368" />
</frame>
<item id="103368" />
mouse-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103371" />
</frame>
<item id="103371" />
mouse-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103372" />
</frame>
<item id="103372" />
mouse
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103370" />
</frame>
<item id="103370" />
moustache
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103373" />
</frame>
<item id="103373" />
movie-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103375" />
</frame>
<item id="103375" />
movie
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103374" />
</frame>
<item id="103374" />
mug-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103377" />
</frame>
<item id="103377" />
mug
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103376" />
</frame>
<item id="103376" />
multiplier-0-5x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103378" />
</frame>
<item id="103378" />
multiplier-1-5x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103379" />
</frame>
<item id="103379" />
multiplier-1x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103380" />
</frame>
<item id="103380" />
multiplier-2x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103381" />
</frame>
<item id="103381" />
mushroom-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103383" />
</frame>
<item id="103383" />
mushroom
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103382" />
</frame>
<item id="103382" />
music-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103385" />
</frame>
<item id="103385" />
music-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103386" />
</frame>
<item id="103386" />
music-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103387" />
</frame>
<item id="103387" />
music-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103388" />
</frame>
<item id="103388" />
music-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103389" />
</frame>
<item id="103389" />
music-discount
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103390" />
</frame>
<item id="103390" />
music-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103391" />
</frame>
<item id="103391" />
music-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103392" />
</frame>
<item id="103392" />
music-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103393" />
</frame>
<item id="103393" />
music-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103394" />
</frame>
<item id="103394" />
music-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103395" />
</frame>
<item id="103395" />
music-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103396" />
</frame>
<item id="103396" />
music-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103397" />
</frame>
<item id="103397" />
music-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103398" />
</frame>
<item id="103398" />
music-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103399" />
</frame>
<item id="103399" />
music-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103400" />
</frame>
<item id="103400" />
music-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103401" />
</frame>
<item id="103401" />
music-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103402" />
</frame>
<item id="103402" />
music-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103403" />
</frame>
<item id="103403" />
music-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103404" />
</frame>
<item id="103404" />
music-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103405" />
</frame>
<item id="103405" />
music
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103384" />
</frame>
<item id="103384" />
navigation-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103407" />
</frame>
<item id="103407" />
navigation-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103408" />
</frame>
<item id="103408" />
navigation-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103409" />
</frame>
<item id="103409" />
navigation-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103410" />
</frame>
<item id="103410" />
navigation-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103411" />
</frame>
<item id="103411" />
navigation-discount
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103412" />
</frame>
<item id="103412" />
navigation-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103413" />
</frame>
<item id="103413" />
navigation-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103414" />
</frame>
<item id="103414" />
navigation-east
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103415" />
</frame>
<item id="103415" />
navigation-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103416" />
</frame>
<item id="103416" />
navigation-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103417" />
</frame>
<item id="103417" />
navigation-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103418" />
</frame>
<item id="103418" />
navigation-north
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103419" />
</frame>
<item id="103419" />
navigation-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103420" />
</frame>
<item id="103420" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 3421-3510 of 4964 SVG files.
Back to section index
navigation-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103421" />
</frame>
<item id="103421" />
navigation-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103422" />
</frame>
<item id="103422" />
navigation-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103423" />
</frame>
<item id="103423" />
navigation-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103424" />
</frame>
<item id="103424" />
navigation-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103425" />
</frame>
<item id="103425" />
navigation-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103426" />
</frame>
<item id="103426" />
navigation-south
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103427" />
</frame>
<item id="103427" />
navigation-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103428" />
</frame>
<item id="103428" />
navigation-top
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103429" />
</frame>
<item id="103429" />
navigation-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103430" />
</frame>
<item id="103430" />
navigation-west
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103431" />
</frame>
<item id="103431" />
navigation-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103432" />
</frame>
<item id="103432" />
navigation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103406" />
</frame>
<item id="103406" />
needle-thread
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103434" />
</frame>
<item id="103434" />
needle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103433" />
</frame>
<item id="103433" />
network-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103436" />
</frame>
<item id="103436" />
network
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103435" />
</frame>
<item id="103435" />
new-section
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103437" />
</frame>
<item id="103437" />
news-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103439" />
</frame>
<item id="103439" />
news
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103438" />
</frame>
<item id="103438" />
nfc-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103441" />
</frame>
<item id="103441" />
nfc
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103440" />
</frame>
<item id="103440" />
no-copyright
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103442" />
</frame>
<item id="103442" />
no-creative-commons
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103443" />
</frame>
<item id="103443" />
no-derivatives
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103444" />
</frame>
<item id="103444" />
north-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103445" />
</frame>
<item id="103445" />
note-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103447" />
</frame>
<item id="103447" />
note
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103446" />
</frame>
<item id="103446" />
notebook-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103449" />
</frame>
<item id="103449" />
notebook
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103448" />
</frame>
<item id="103448" />
notes-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103451" />
</frame>
<item id="103451" />
notes
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103450" />
</frame>
<item id="103450" />
notification-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103453" />
</frame>
<item id="103453" />
notification
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103452" />
</frame>
<item id="103452" />
number-0-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103456" />
</frame>
<item id="103456" />
number-0
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103455" />
</frame>
<item id="103455" />
number-1-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103458" />
</frame>
<item id="103458" />
number-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103457" />
</frame>
<item id="103457" />
number-10-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103460" />
</frame>
<item id="103460" />
number-10
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103459" />
</frame>
<item id="103459" />
number-100-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103461" />
</frame>
<item id="103461" />
number-11-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103463" />
</frame>
<item id="103463" />
number-11
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103462" />
</frame>
<item id="103462" />
number-12-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103464" />
</frame>
<item id="103464" />
number-123
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103465" />
</frame>
<item id="103465" />
number-13-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103466" />
</frame>
<item id="103466" />
number-14-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103467" />
</frame>
<item id="103467" />
number-15-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103468" />
</frame>
<item id="103468" />
number-16-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103469" />
</frame>
<item id="103469" />
number-17-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103470" />
</frame>
<item id="103470" />
number-18-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103471" />
</frame>
<item id="103471" />
number-19-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103472" />
</frame>
<item id="103472" />
number-2-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103474" />
</frame>
<item id="103474" />
number-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103473" />
</frame>
<item id="103473" />
number-20-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103475" />
</frame>
<item id="103475" />
number-21-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103476" />
</frame>
<item id="103476" />
number-22-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103477" />
</frame>
<item id="103477" />
number-23-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103478" />
</frame>
<item id="103478" />
number-24-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103479" />
</frame>
<item id="103479" />
number-25-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103480" />
</frame>
<item id="103480" />
number-26-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103481" />
</frame>
<item id="103481" />
number-27-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103482" />
</frame>
<item id="103482" />
number-28-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103483" />
</frame>
<item id="103483" />
number-29-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103484" />
</frame>
<item id="103484" />
number-3-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103486" />
</frame>
<item id="103486" />
number-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103485" />
</frame>
<item id="103485" />
number-30-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103487" />
</frame>
<item id="103487" />
number-31-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103488" />
</frame>
<item id="103488" />
number-32-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103489" />
</frame>
<item id="103489" />
number-33-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103490" />
</frame>
<item id="103490" />
number-34-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103491" />
</frame>
<item id="103491" />
number-35-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103492" />
</frame>
<item id="103492" />
number-36-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103493" />
</frame>
<item id="103493" />
number-37-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103494" />
</frame>
<item id="103494" />
number-38-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103495" />
</frame>
<item id="103495" />
number-39-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103496" />
</frame>
<item id="103496" />
number-4-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103498" />
</frame>
<item id="103498" />
number-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103497" />
</frame>
<item id="103497" />
number-40-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103499" />
</frame>
<item id="103499" />
number-41-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103500" />
</frame>
<item id="103500" />
number-42-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103501" />
</frame>
<item id="103501" />
number-43-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103502" />
</frame>
<item id="103502" />
number-44-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103503" />
</frame>
<item id="103503" />
number-45-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103504" />
</frame>
<item id="103504" />
number-46-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103505" />
</frame>
<item id="103505" />
number-47-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103506" />
</frame>
<item id="103506" />
number-48-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103507" />
</frame>
<item id="103507" />
number-49-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103508" />
</frame>
<item id="103508" />
number-5-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103510" />
</frame>
<item id="103510" />
number-5
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103509" />
</frame>
<item id="103509" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 3511-3600 of 4964 SVG files.
Back to section index
number-50-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103511" />
</frame>
<item id="103511" />
number-51-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103512" />
</frame>
<item id="103512" />
number-52-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103513" />
</frame>
<item id="103513" />
number-53-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103514" />
</frame>
<item id="103514" />
number-54-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103515" />
</frame>
<item id="103515" />
number-55-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103516" />
</frame>
<item id="103516" />
number-56-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103517" />
</frame>
<item id="103517" />
number-57-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103518" />
</frame>
<item id="103518" />
number-58-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103519" />
</frame>
<item id="103519" />
number-59-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103520" />
</frame>
<item id="103520" />
number-6-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103522" />
</frame>
<item id="103522" />
number-6
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103521" />
</frame>
<item id="103521" />
number-60-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103523" />
</frame>
<item id="103523" />
number-61-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103524" />
</frame>
<item id="103524" />
number-62-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103525" />
</frame>
<item id="103525" />
number-63-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103526" />
</frame>
<item id="103526" />
number-64-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103527" />
</frame>
<item id="103527" />
number-65-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103528" />
</frame>
<item id="103528" />
number-66-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103529" />
</frame>
<item id="103529" />
number-67-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103530" />
</frame>
<item id="103530" />
number-68-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103531" />
</frame>
<item id="103531" />
number-69-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103532" />
</frame>
<item id="103532" />
number-7-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103534" />
</frame>
<item id="103534" />
number-7
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103533" />
</frame>
<item id="103533" />
number-70-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103535" />
</frame>
<item id="103535" />
number-71-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103536" />
</frame>
<item id="103536" />
number-72-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103537" />
</frame>
<item id="103537" />
number-73-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103538" />
</frame>
<item id="103538" />
number-74-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103539" />
</frame>
<item id="103539" />
number-75-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103540" />
</frame>
<item id="103540" />
number-76-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103541" />
</frame>
<item id="103541" />
number-77-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103542" />
</frame>
<item id="103542" />
number-78-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103543" />
</frame>
<item id="103543" />
number-79-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103544" />
</frame>
<item id="103544" />
number-8-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103546" />
</frame>
<item id="103546" />
number-8
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103545" />
</frame>
<item id="103545" />
number-80-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103547" />
</frame>
<item id="103547" />
number-81-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103548" />
</frame>
<item id="103548" />
number-82-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103549" />
</frame>
<item id="103549" />
number-83-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103550" />
</frame>
<item id="103550" />
number-84-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103551" />
</frame>
<item id="103551" />
number-85-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103552" />
</frame>
<item id="103552" />
number-86-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103553" />
</frame>
<item id="103553" />
number-87-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103554" />
</frame>
<item id="103554" />
number-88-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103555" />
</frame>
<item id="103555" />
number-89-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103556" />
</frame>
<item id="103556" />
number-9-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103558" />
</frame>
<item id="103558" />
number-9
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103557" />
</frame>
<item id="103557" />
number-90-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103559" />
</frame>
<item id="103559" />
number-91-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103560" />
</frame>
<item id="103560" />
number-92-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103561" />
</frame>
<item id="103561" />
number-93-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103562" />
</frame>
<item id="103562" />
number-94-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103563" />
</frame>
<item id="103563" />
number-95-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103564" />
</frame>
<item id="103564" />
number-96-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103565" />
</frame>
<item id="103565" />
number-97-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103566" />
</frame>
<item id="103566" />
number-98-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103567" />
</frame>
<item id="103567" />
number-99-small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103568" />
</frame>
<item id="103568" />
number
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103454" />
</frame>
<item id="103454" />
numbers
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103569" />
</frame>
<item id="103569" />
nurse
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103570" />
</frame>
<item id="103570" />
nut
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103571" />
</frame>
<item id="103571" />
object-scan
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103572" />
</frame>
<item id="103572" />
octagon-minus-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103575" />
</frame>
<item id="103575" />
octagon-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103574" />
</frame>
<item id="103574" />
octagon-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103576" />
</frame>
<item id="103576" />
octagon-plus-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103578" />
</frame>
<item id="103578" />
octagon-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103577" />
</frame>
<item id="103577" />
octagon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103573" />
</frame>
<item id="103573" />
octahedron-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103580" />
</frame>
<item id="103580" />
octahedron-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103581" />
</frame>
<item id="103581" />
octahedron
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103579" />
</frame>
<item id="103579" />
old
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103582" />
</frame>
<item id="103582" />
olympics-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103584" />
</frame>
<item id="103584" />
olympics
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103583" />
</frame>
<item id="103583" />
om
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103585" />
</frame>
<item id="103585" />
omega
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103586" />
</frame>
<item id="103586" />
outbound
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103587" />
</frame>
<item id="103587" />
outlet
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103588" />
</frame>
<item id="103588" />
oval-vertical
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103590" />
</frame>
<item id="103590" />
oval
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103589" />
</frame>
<item id="103589" />
overline
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103591" />
</frame>
<item id="103591" />
package-export
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103593" />
</frame>
<item id="103593" />
package-import
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103594" />
</frame>
<item id="103594" />
package-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103595" />
</frame>
<item id="103595" />
package
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103592" />
</frame>
<item id="103592" />
packages
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103596" />
</frame>
<item id="103596" />
pacman
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103597" />
</frame>
<item id="103597" />
page-break
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103598" />
</frame>
<item id="103598" />
paint-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103600" />
</frame>
<item id="103600" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 3601-3690 of 4964 SVG files.
Back to section index
paint
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103599" />
</frame>
<item id="103599" />
palette-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103602" />
</frame>
<item id="103602" />
palette
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103601" />
</frame>
<item id="103601" />
panorama-horizontal-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103604" />
</frame>
<item id="103604" />
panorama-horizontal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103603" />
</frame>
<item id="103603" />
panorama-vertical-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103606" />
</frame>
<item id="103606" />
panorama-vertical
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103605" />
</frame>
<item id="103605" />
paper-bag-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103608" />
</frame>
<item id="103608" />
paper-bag
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103607" />
</frame>
<item id="103607" />
paperclip
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103609" />
</frame>
<item id="103609" />
parachute-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103611" />
</frame>
<item id="103611" />
parachute
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103610" />
</frame>
<item id="103610" />
parentheses-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103613" />
</frame>
<item id="103613" />
parentheses
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103612" />
</frame>
<item id="103612" />
parking-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103615" />
</frame>
<item id="103615" />
parking-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103616" />
</frame>
<item id="103616" />
parking
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103614" />
</frame>
<item id="103614" />
password-fingerprint
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103618" />
</frame>
<item id="103618" />
password-mobile-phone
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103619" />
</frame>
<item id="103619" />
password-user
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103620" />
</frame>
<item id="103620" />
password
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103617" />
</frame>
<item id="103617" />
paw-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103622" />
</frame>
<item id="103622" />
paw
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103621" />
</frame>
<item id="103621" />
paywall
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103623" />
</frame>
<item id="103623" />
pdf
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103624" />
</frame>
<item id="103624" />
peace
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103625" />
</frame>
<item id="103625" />
pencil-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103627" />
</frame>
<item id="103627" />
pencil-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103628" />
</frame>
<item id="103628" />
pencil-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103629" />
</frame>
<item id="103629" />
pencil-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103630" />
</frame>
<item id="103630" />
pencil-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103631" />
</frame>
<item id="103631" />
pencil-discount
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103632" />
</frame>
<item id="103632" />
pencil-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103633" />
</frame>
<item id="103633" />
pencil-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103634" />
</frame>
<item id="103634" />
pencil-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103635" />
</frame>
<item id="103635" />
pencil-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103636" />
</frame>
<item id="103636" />
pencil-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103637" />
</frame>
<item id="103637" />
pencil-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103638" />
</frame>
<item id="103638" />
pencil-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103639" />
</frame>
<item id="103639" />
pencil-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103640" />
</frame>
<item id="103640" />
pencil-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103641" />
</frame>
<item id="103641" />
pencil-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103642" />
</frame>
<item id="103642" />
pencil-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103643" />
</frame>
<item id="103643" />
pencil-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103644" />
</frame>
<item id="103644" />
pencil-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103645" />
</frame>
<item id="103645" />
pencil-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103646" />
</frame>
<item id="103646" />
pencil-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103647" />
</frame>
<item id="103647" />
pencil
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103626" />
</frame>
<item id="103626" />
pennant-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103649" />
</frame>
<item id="103649" />
pennant-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103650" />
</frame>
<item id="103650" />
pennant
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103648" />
</frame>
<item id="103648" />
pentagon-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103652" />
</frame>
<item id="103652" />
pentagon-number-0
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103653" />
</frame>
<item id="103653" />
pentagon-number-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103654" />
</frame>
<item id="103654" />
pentagon-number-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103655" />
</frame>
<item id="103655" />
pentagon-number-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103656" />
</frame>
<item id="103656" />
pentagon-number-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103657" />
</frame>
<item id="103657" />
pentagon-number-5
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103658" />
</frame>
<item id="103658" />
pentagon-number-6
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103659" />
</frame>
<item id="103659" />
pentagon-number-7
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103660" />
</frame>
<item id="103660" />
pentagon-number-8
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103661" />
</frame>
<item id="103661" />
pentagon-number-9
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103662" />
</frame>
<item id="103662" />
pentagon-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103663" />
</frame>
<item id="103663" />
pentagon-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103664" />
</frame>
<item id="103664" />
pentagon-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103665" />
</frame>
<item id="103665" />
pentagon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103651" />
</frame>
<item id="103651" />
pentagram
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103666" />
</frame>
<item id="103666" />
pepper-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103668" />
</frame>
<item id="103668" />
pepper
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103667" />
</frame>
<item id="103667" />
percentage-0
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103670" />
</frame>
<item id="103670" />
percentage-10
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103671" />
</frame>
<item id="103671" />
percentage-100
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103672" />
</frame>
<item id="103672" />
percentage-20
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103673" />
</frame>
<item id="103673" />
percentage-25
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103674" />
</frame>
<item id="103674" />
percentage-30
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103675" />
</frame>
<item id="103675" />
percentage-33
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103676" />
</frame>
<item id="103676" />
percentage-40
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103677" />
</frame>
<item id="103677" />
percentage-50
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103678" />
</frame>
<item id="103678" />
percentage-60
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103679" />
</frame>
<item id="103679" />
percentage-66
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103680" />
</frame>
<item id="103680" />
percentage-70
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103681" />
</frame>
<item id="103681" />
percentage-75
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103682" />
</frame>
<item id="103682" />
percentage-80
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103683" />
</frame>
<item id="103683" />
percentage-90
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103684" />
</frame>
<item id="103684" />
percentage
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103669" />
</frame>
<item id="103669" />
perfume
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103685" />
</frame>
<item id="103685" />
perspective-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103687" />
</frame>
<item id="103687" />
perspective
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103686" />
</frame>
<item id="103686" />
phone-call
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103689" />
</frame>
<item id="103689" />
phone-calling
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103690" />
</frame>
<item id="103690" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 3691-3780 of 4964 SVG files.
Back to section index
phone-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103691" />
</frame>
<item id="103691" />
phone-done
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103692" />
</frame>
<item id="103692" />
phone-end
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103693" />
</frame>
<item id="103693" />
phone-incoming
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103694" />
</frame>
<item id="103694" />
phone-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103695" />
</frame>
<item id="103695" />
phone-outgoing
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103696" />
</frame>
<item id="103696" />
phone-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103697" />
</frame>
<item id="103697" />
phone-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103698" />
</frame>
<item id="103698" />
phone-ringing
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103699" />
</frame>
<item id="103699" />
phone-spark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103700" />
</frame>
<item id="103700" />
phone-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103701" />
</frame>
<item id="103701" />
phone
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103688" />
</frame>
<item id="103688" />
photo-ai
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103703" />
</frame>
<item id="103703" />
photo-bitcoin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103704" />
</frame>
<item id="103704" />
photo-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103705" />
</frame>
<item id="103705" />
photo-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103706" />
</frame>
<item id="103706" />
photo-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103707" />
</frame>
<item id="103707" />
photo-circle-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103709" />
</frame>
<item id="103709" />
photo-circle-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103710" />
</frame>
<item id="103710" />
photo-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103708" />
</frame>
<item id="103708" />
photo-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103711" />
</frame>
<item id="103711" />
photo-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103712" />
</frame>
<item id="103712" />
photo-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103713" />
</frame>
<item id="103713" />
photo-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103714" />
</frame>
<item id="103714" />
photo-edit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103715" />
</frame>
<item id="103715" />
photo-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103716" />
</frame>
<item id="103716" />
photo-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103717" />
</frame>
<item id="103717" />
photo-hexagon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103718" />
</frame>
<item id="103718" />
photo-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103719" />
</frame>
<item id="103719" />
photo-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103720" />
</frame>
<item id="103720" />
photo-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103721" />
</frame>
<item id="103721" />
photo-pentagon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103722" />
</frame>
<item id="103722" />
photo-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103723" />
</frame>
<item id="103723" />
photo-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103724" />
</frame>
<item id="103724" />
photo-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103725" />
</frame>
<item id="103725" />
photo-scan
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103726" />
</frame>
<item id="103726" />
photo-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103727" />
</frame>
<item id="103727" />
photo-sensor-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103729" />
</frame>
<item id="103729" />
photo-sensor-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103730" />
</frame>
<item id="103730" />
photo-sensor
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103728" />
</frame>
<item id="103728" />
photo-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103731" />
</frame>
<item id="103731" />
photo-shield
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103732" />
</frame>
<item id="103732" />
photo-spark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103733" />
</frame>
<item id="103733" />
photo-square-rounded
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103734" />
</frame>
<item id="103734" />
photo-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103735" />
</frame>
<item id="103735" />
photo-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103736" />
</frame>
<item id="103736" />
photo-video
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103737" />
</frame>
<item id="103737" />
photo-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103738" />
</frame>
<item id="103738" />
photo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103702" />
</frame>
<item id="103702" />
physotherapist
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103739" />
</frame>
<item id="103739" />
piano
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103740" />
</frame>
<item id="103740" />
pick
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103741" />
</frame>
<item id="103741" />
picnic-table
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103742" />
</frame>
<item id="103742" />
picture-in-picture-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103744" />
</frame>
<item id="103744" />
picture-in-picture-on
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103745" />
</frame>
<item id="103745" />
picture-in-picture-top
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103746" />
</frame>
<item id="103746" />
picture-in-picture
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103743" />
</frame>
<item id="103743" />
pig-money
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103748" />
</frame>
<item id="103748" />
pig-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103749" />
</frame>
<item id="103749" />
pig
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103747" />
</frame>
<item id="103747" />
pilcrow-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103751" />
</frame>
<item id="103751" />
pilcrow-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103752" />
</frame>
<item id="103752" />
pilcrow
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103750" />
</frame>
<item id="103750" />
pill-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103754" />
</frame>
<item id="103754" />
pill
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103753" />
</frame>
<item id="103753" />
pills
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103755" />
</frame>
<item id="103755" />
pin-end
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103757" />
</frame>
<item id="103757" />
pin-invoke
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103758" />
</frame>
<item id="103758" />
pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103756" />
</frame>
<item id="103756" />
ping-pong
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103759" />
</frame>
<item id="103759" />
pinned-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103761" />
</frame>
<item id="103761" />
pinned
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103760" />
</frame>
<item id="103760" />
pizza-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103763" />
</frame>
<item id="103763" />
pizza
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103762" />
</frame>
<item id="103762" />
placeholder
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103764" />
</frame>
<item id="103764" />
plane-arrival
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103766" />
</frame>
<item id="103766" />
plane-departure
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103767" />
</frame>
<item id="103767" />
plane-inflight
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103768" />
</frame>
<item id="103768" />
plane-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103769" />
</frame>
<item id="103769" />
plane-tilt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103770" />
</frame>
<item id="103770" />
plane
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103765" />
</frame>
<item id="103765" />
planet-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103772" />
</frame>
<item id="103772" />
planet
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103771" />
</frame>
<item id="103771" />
plant-2-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103775" />
</frame>
<item id="103775" />
plant-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103774" />
</frame>
<item id="103774" />
plant-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103776" />
</frame>
<item id="103776" />
plant
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103773" />
</frame>
<item id="103773" />
play-basketball
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103777" />
</frame>
<item id="103777" />
play-card-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103779" />
</frame>
<item id="103779" />
play-card-10
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103780" />
</frame>
<item id="103780" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 3781-3870 of 4964 SVG files.
Back to section index
play-card-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103781" />
</frame>
<item id="103781" />
play-card-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103782" />
</frame>
<item id="103782" />
play-card-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103783" />
</frame>
<item id="103783" />
play-card-5
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103784" />
</frame>
<item id="103784" />
play-card-6
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103785" />
</frame>
<item id="103785" />
play-card-7
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103786" />
</frame>
<item id="103786" />
play-card-8
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103787" />
</frame>
<item id="103787" />
play-card-9
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103788" />
</frame>
<item id="103788" />
play-card-a
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103789" />
</frame>
<item id="103789" />
play-card-j
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103790" />
</frame>
<item id="103790" />
play-card-k
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103791" />
</frame>
<item id="103791" />
play-card-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103792" />
</frame>
<item id="103792" />
play-card-q
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103793" />
</frame>
<item id="103793" />
play-card-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103794" />
</frame>
<item id="103794" />
play-card
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103778" />
</frame>
<item id="103778" />
play-football
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103795" />
</frame>
<item id="103795" />
play-handball
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103796" />
</frame>
<item id="103796" />
play-volleyball
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103797" />
</frame>
<item id="103797" />
player-eject
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103798" />
</frame>
<item id="103798" />
player-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103799" />
</frame>
<item id="103799" />
player-play
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103800" />
</frame>
<item id="103800" />
player-record
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103801" />
</frame>
<item id="103801" />
player-skip-back
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103802" />
</frame>
<item id="103802" />
player-skip-forward
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103803" />
</frame>
<item id="103803" />
player-stop
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103804" />
</frame>
<item id="103804" />
player-track-next
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103805" />
</frame>
<item id="103805" />
player-track-prev
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103806" />
</frame>
<item id="103806" />
playlist-add
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103808" />
</frame>
<item id="103808" />
playlist-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103809" />
</frame>
<item id="103809" />
playlist-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103810" />
</frame>
<item id="103810" />
playlist
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103807" />
</frame>
<item id="103807" />
playstation-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103811" />
</frame>
<item id="103811" />
playstation-square
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103812" />
</frame>
<item id="103812" />
playstation-triangle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103813" />
</frame>
<item id="103813" />
playstation-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103814" />
</frame>
<item id="103814" />
plug-connected-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103817" />
</frame>
<item id="103817" />
plug-connected
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103816" />
</frame>
<item id="103816" />
plug-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103818" />
</frame>
<item id="103818" />
plug-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103819" />
</frame>
<item id="103819" />
plug
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103815" />
</frame>
<item id="103815" />
plus-equal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103821" />
</frame>
<item id="103821" />
plus-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103822" />
</frame>
<item id="103822" />
plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103820" />
</frame>
<item id="103820" />
png
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103823" />
</frame>
<item id="103823" />
podium-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103825" />
</frame>
<item id="103825" />
podium
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103824" />
</frame>
<item id="103824" />
point-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103827" />
</frame>
<item id="103827" />
point
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103826" />
</frame>
<item id="103826" />
pointer-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103829" />
</frame>
<item id="103829" />
pointer-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103830" />
</frame>
<item id="103830" />
pointer-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103831" />
</frame>
<item id="103831" />
pointer-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103832" />
</frame>
<item id="103832" />
pointer-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103833" />
</frame>
<item id="103833" />
pointer-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103834" />
</frame>
<item id="103834" />
pointer-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103835" />
</frame>
<item id="103835" />
pointer-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103836" />
</frame>
<item id="103836" />
pointer-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103837" />
</frame>
<item id="103837" />
pointer-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103838" />
</frame>
<item id="103838" />
pointer-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103839" />
</frame>
<item id="103839" />
pointer-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103840" />
</frame>
<item id="103840" />
pointer-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103841" />
</frame>
<item id="103841" />
pointer-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103842" />
</frame>
<item id="103842" />
pointer-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103843" />
</frame>
<item id="103843" />
pointer-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103844" />
</frame>
<item id="103844" />
pointer-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103845" />
</frame>
<item id="103845" />
pointer-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103846" />
</frame>
<item id="103846" />
pointer-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103847" />
</frame>
<item id="103847" />
pointer-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103848" />
</frame>
<item id="103848" />
pointer
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103828" />
</frame>
<item id="103828" />
pokeball-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103850" />
</frame>
<item id="103850" />
pokeball
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103849" />
</frame>
<item id="103849" />
poker-chip
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103851" />
</frame>
<item id="103851" />
polaroid
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103852" />
</frame>
<item id="103852" />
polygon-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103854" />
</frame>
<item id="103854" />
polygon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103853" />
</frame>
<item id="103853" />
poo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103855" />
</frame>
<item id="103855" />
pool-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103857" />
</frame>
<item id="103857" />
pool
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103856" />
</frame>
<item id="103856" />
power
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103858" />
</frame>
<item id="103858" />
pray
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103859" />
</frame>
<item id="103859" />
premium-rights
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103860" />
</frame>
<item id="103860" />
prescription
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103861" />
</frame>
<item id="103861" />
presentation-analytics
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103863" />
</frame>
<item id="103863" />
presentation-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103864" />
</frame>
<item id="103864" />
presentation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103862" />
</frame>
<item id="103862" />
printer-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103866" />
</frame>
<item id="103866" />
printer
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103865" />
</frame>
<item id="103865" />
prism-light
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103868" />
</frame>
<item id="103868" />
prism-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103869" />
</frame>
<item id="103869" />
prism-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103870" />
</frame>
<item id="103870" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 3871-3960 of 4964 SVG files.
Back to section index
prism
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103867" />
</frame>
<item id="103867" />
prison
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103871" />
</frame>
<item id="103871" />
progress-alert
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103873" />
</frame>
<item id="103873" />
progress-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103874" />
</frame>
<item id="103874" />
progress-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103875" />
</frame>
<item id="103875" />
progress-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103876" />
</frame>
<item id="103876" />
progress-help
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103877" />
</frame>
<item id="103877" />
progress-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103878" />
</frame>
<item id="103878" />
progress
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103872" />
</frame>
<item id="103872" />
prompt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103879" />
</frame>
<item id="103879" />
prong
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103880" />
</frame>
<item id="103880" />
propeller-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103882" />
</frame>
<item id="103882" />
propeller
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103881" />
</frame>
<item id="103881" />
protocol
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103883" />
</frame>
<item id="103883" />
pumpkin-scary
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103884" />
</frame>
<item id="103884" />
puzzle-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103886" />
</frame>
<item id="103886" />
puzzle-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103887" />
</frame>
<item id="103887" />
puzzle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103885" />
</frame>
<item id="103885" />
pyramid-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103889" />
</frame>
<item id="103889" />
pyramid-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103890" />
</frame>
<item id="103890" />
pyramid
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103888" />
</frame>
<item id="103888" />
qrcode-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103892" />
</frame>
<item id="103892" />
qrcode
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103891" />
</frame>
<item id="103891" />
question-mark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103893" />
</frame>
<item id="103893" />
quote-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103895" />
</frame>
<item id="103895" />
quote
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103894" />
</frame>
<item id="103894" />
quotes
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103896" />
</frame>
<item id="103896" />
radar-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103898" />
</frame>
<item id="103898" />
radar-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103899" />
</frame>
<item id="103899" />
radar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103897" />
</frame>
<item id="103897" />
radio-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103901" />
</frame>
<item id="103901" />
radio
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103900" />
</frame>
<item id="103900" />
radioactive-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103903" />
</frame>
<item id="103903" />
radioactive
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103902" />
</frame>
<item id="103902" />
radius-bottom-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103904" />
</frame>
<item id="103904" />
radius-bottom-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103905" />
</frame>
<item id="103905" />
radius-top-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103906" />
</frame>
<item id="103906" />
radius-top-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103907" />
</frame>
<item id="103907" />
rainbow-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103909" />
</frame>
<item id="103909" />
rainbow
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103908" />
</frame>
<item id="103908" />
rating-12-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103910" />
</frame>
<item id="103910" />
rating-14-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103911" />
</frame>
<item id="103911" />
rating-16-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103912" />
</frame>
<item id="103912" />
rating-18-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103913" />
</frame>
<item id="103913" />
rating-21-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103914" />
</frame>
<item id="103914" />
razor-electric
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103916" />
</frame>
<item id="103916" />
razor
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103915" />
</frame>
<item id="103915" />
receipt-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103918" />
</frame>
<item id="103918" />
receipt-bitcoin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103919" />
</frame>
<item id="103919" />
receipt-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103920" />
</frame>
<item id="103920" />
receipt-euro
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103921" />
</frame>
<item id="103921" />
receipt-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103922" />
</frame>
<item id="103922" />
receipt-pound
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103923" />
</frame>
<item id="103923" />
receipt-refund
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103924" />
</frame>
<item id="103924" />
receipt-rupee
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103925" />
</frame>
<item id="103925" />
receipt-tax
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103926" />
</frame>
<item id="103926" />
receipt-yen
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103927" />
</frame>
<item id="103927" />
receipt-yuan
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103928" />
</frame>
<item id="103928" />
receipt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103917" />
</frame>
<item id="103917" />
recharging
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103929" />
</frame>
<item id="103929" />
record-mail-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103931" />
</frame>
<item id="103931" />
record-mail
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103930" />
</frame>
<item id="103930" />
rectangle-rounded-bottom
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103933" />
</frame>
<item id="103933" />
rectangle-rounded-top
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103934" />
</frame>
<item id="103934" />
rectangle-vertical
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103935" />
</frame>
<item id="103935" />
rectangle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103932" />
</frame>
<item id="103932" />
rectangular-prism-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103937" />
</frame>
<item id="103937" />
rectangular-prism-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103938" />
</frame>
<item id="103938" />
rectangular-prism
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103936" />
</frame>
<item id="103936" />
recycle-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103940" />
</frame>
<item id="103940" />
recycle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103939" />
</frame>
<item id="103939" />
refresh-alert
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103942" />
</frame>
<item id="103942" />
refresh-dot
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103943" />
</frame>
<item id="103943" />
refresh-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103944" />
</frame>
<item id="103944" />
refresh
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103941" />
</frame>
<item id="103941" />
regex-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103946" />
</frame>
<item id="103946" />
regex
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103945" />
</frame>
<item id="103945" />
registered
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103947" />
</frame>
<item id="103947" />
relation-many-to-many
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103948" />
</frame>
<item id="103948" />
relation-one-to-many
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103949" />
</frame>
<item id="103949" />
relation-one-to-one
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103950" />
</frame>
<item id="103950" />
reload
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103951" />
</frame>
<item id="103951" />
reorder
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103952" />
</frame>
<item id="103952" />
repeat-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103954" />
</frame>
<item id="103954" />
repeat-once
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103955" />
</frame>
<item id="103955" />
repeat
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103953" />
</frame>
<item id="103953" />
replace-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103957" />
</frame>
<item id="103957" />
replace-user
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103958" />
</frame>
<item id="103958" />
replace
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103956" />
</frame>
<item id="103956" />
report-analytics
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103960" />
</frame>
<item id="103960" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 3961-4050 of 4964 SVG files.
Back to section index
report-medical
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103961" />
</frame>
<item id="103961" />
report-money
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103962" />
</frame>
<item id="103962" />
report-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103963" />
</frame>
<item id="103963" />
report-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103964" />
</frame>
<item id="103964" />
report
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103959" />
</frame>
<item id="103959" />
reserved-line
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103965" />
</frame>
<item id="103965" />
resize
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103966" />
</frame>
<item id="103966" />
restore
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103967" />
</frame>
<item id="103967" />
rewind-backward-10
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103968" />
</frame>
<item id="103968" />
rewind-backward-15
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103969" />
</frame>
<item id="103969" />
rewind-backward-20
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103970" />
</frame>
<item id="103970" />
rewind-backward-30
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103971" />
</frame>
<item id="103971" />
rewind-backward-40
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103972" />
</frame>
<item id="103972" />
rewind-backward-5
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103973" />
</frame>
<item id="103973" />
rewind-backward-50
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103974" />
</frame>
<item id="103974" />
rewind-backward-60
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103975" />
</frame>
<item id="103975" />
rewind-forward-10
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103976" />
</frame>
<item id="103976" />
rewind-forward-15
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103977" />
</frame>
<item id="103977" />
rewind-forward-20
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103978" />
</frame>
<item id="103978" />
rewind-forward-30
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103979" />
</frame>
<item id="103979" />
rewind-forward-40
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103980" />
</frame>
<item id="103980" />
rewind-forward-5
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103981" />
</frame>
<item id="103981" />
rewind-forward-50
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103982" />
</frame>
<item id="103982" />
rewind-forward-60
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103983" />
</frame>
<item id="103983" />
ribbon-health
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103984" />
</frame>
<item id="103984" />
rings
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103985" />
</frame>
<item id="103985" />
ripple-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103987" />
</frame>
<item id="103987" />
ripple
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103986" />
</frame>
<item id="103986" />
road-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103989" />
</frame>
<item id="103989" />
road-sign
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103990" />
</frame>
<item id="103990" />
road
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103988" />
</frame>
<item id="103988" />
robot-face
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103992" />
</frame>
<item id="103992" />
robot-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103993" />
</frame>
<item id="103993" />
robot
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103991" />
</frame>
<item id="103991" />
rocket-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103995" />
</frame>
<item id="103995" />
rocket
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103994" />
</frame>
<item id="103994" />
roller-skating
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103996" />
</frame>
<item id="103996" />
rollercoaster-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103998" />
</frame>
<item id="103998" />
rollercoaster
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103997" />
</frame>
<item id="103997" />
rosette-discount-check-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104002" />
</frame>
<item id="104002" />
rosette-discount-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104001" />
</frame>
<item id="104001" />
rosette-discount-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104003" />
</frame>
<item id="104003" />
rosette-discount
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104000" />
</frame>
<item id="104000" />
rosette-number-0
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104004" />
</frame>
<item id="104004" />
rosette-number-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104005" />
</frame>
<item id="104005" />
rosette-number-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104006" />
</frame>
<item id="104006" />
rosette-number-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104007" />
</frame>
<item id="104007" />
rosette-number-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104008" />
</frame>
<item id="104008" />
rosette-number-5
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104009" />
</frame>
<item id="104009" />
rosette-number-6
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104010" />
</frame>
<item id="104010" />
rosette-number-7
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104011" />
</frame>
<item id="104011" />
rosette-number-8
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104012" />
</frame>
<item id="104012" />
rosette-number-9
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104013" />
</frame>
<item id="104013" />
rosette
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="103999" />
</frame>
<item id="103999" />
rotate-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104015" />
</frame>
<item id="104015" />
rotate-360
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104016" />
</frame>
<item id="104016" />
rotate-3d
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104017" />
</frame>
<item id="104017" />
rotate-clockwise-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104019" />
</frame>
<item id="104019" />
rotate-clockwise
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104018" />
</frame>
<item id="104018" />
rotate-dot
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104020" />
</frame>
<item id="104020" />
rotate-rectangle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104021" />
</frame>
<item id="104021" />
rotate
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104014" />
</frame>
<item id="104014" />
route-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104023" />
</frame>
<item id="104023" />
route-alt-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104024" />
</frame>
<item id="104024" />
route-alt-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104025" />
</frame>
<item id="104025" />
route-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104026" />
</frame>
<item id="104026" />
route-scan
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104027" />
</frame>
<item id="104027" />
route-square-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104029" />
</frame>
<item id="104029" />
route-square
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104028" />
</frame>
<item id="104028" />
route-x-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104031" />
</frame>
<item id="104031" />
route-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104030" />
</frame>
<item id="104030" />
route
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104022" />
</frame>
<item id="104022" />
router-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104033" />
</frame>
<item id="104033" />
router
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104032" />
</frame>
<item id="104032" />
row-insert-bottom
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104034" />
</frame>
<item id="104034" />
row-insert-top
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104035" />
</frame>
<item id="104035" />
row-remove
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104036" />
</frame>
<item id="104036" />
rss
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104037" />
</frame>
<item id="104037" />
rubber-stamp-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104039" />
</frame>
<item id="104039" />
rubber-stamp
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104038" />
</frame>
<item id="104038" />
ruler-2-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104042" />
</frame>
<item id="104042" />
ruler-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104041" />
</frame>
<item id="104041" />
ruler-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104043" />
</frame>
<item id="104043" />
ruler-measure-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104045" />
</frame>
<item id="104045" />
ruler-measure
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104044" />
</frame>
<item id="104044" />
ruler-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104046" />
</frame>
<item id="104046" />
ruler
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104040" />
</frame>
<item id="104040" />
run
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104047" />
</frame>
<item id="104047" />
rv-truck
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104048" />
</frame>
<item id="104048" />
s-turn-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104049" />
</frame>
<item id="104049" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 4051-4140 of 4964 SVG files.
Back to section index
s-turn-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104050" />
</frame>
<item id="104050" />
s-turn-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104051" />
</frame>
<item id="104051" />
s-turn-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104052" />
</frame>
<item id="104052" />
sailboat-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104054" />
</frame>
<item id="104054" />
sailboat-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104055" />
</frame>
<item id="104055" />
sailboat
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104053" />
</frame>
<item id="104053" />
salad
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104056" />
</frame>
<item id="104056" />
salt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104057" />
</frame>
<item id="104057" />
sandbox
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104058" />
</frame>
<item id="104058" />
satellite-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104060" />
</frame>
<item id="104060" />
satellite
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104059" />
</frame>
<item id="104059" />
sausage
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104061" />
</frame>
<item id="104061" />
scale-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104063" />
</frame>
<item id="104063" />
scale-outline-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104065" />
</frame>
<item id="104065" />
scale-outline
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104064" />
</frame>
<item id="104064" />
scale
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104062" />
</frame>
<item id="104062" />
scan-eye
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104067" />
</frame>
<item id="104067" />
scan-position
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104068" />
</frame>
<item id="104068" />
scan
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104066" />
</frame>
<item id="104066" />
schema-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104070" />
</frame>
<item id="104070" />
schema
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104069" />
</frame>
<item id="104069" />
school-bell
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104072" />
</frame>
<item id="104072" />
school-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104073" />
</frame>
<item id="104073" />
school
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104071" />
</frame>
<item id="104071" />
scissors-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104075" />
</frame>
<item id="104075" />
scissors
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104074" />
</frame>
<item id="104074" />
scooter-electric
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104077" />
</frame>
<item id="104077" />
scooter
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104076" />
</frame>
<item id="104076" />
scoreboard
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104078" />
</frame>
<item id="104078" />
screen-share-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104080" />
</frame>
<item id="104080" />
screen-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104079" />
</frame>
<item id="104079" />
screenshot
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104081" />
</frame>
<item id="104081" />
scribble-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104083" />
</frame>
<item id="104083" />
scribble
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104082" />
</frame>
<item id="104082" />
script-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104085" />
</frame>
<item id="104085" />
script-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104086" />
</frame>
<item id="104086" />
script-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104087" />
</frame>
<item id="104087" />
script
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104084" />
</frame>
<item id="104084" />
scuba-diving-tank
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104089" />
</frame>
<item id="104089" />
scuba-diving
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104088" />
</frame>
<item id="104088" />
scuba-mask-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104091" />
</frame>
<item id="104091" />
scuba-mask
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104090" />
</frame>
<item id="104090" />
sdk
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104092" />
</frame>
<item id="104092" />
search-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104094" />
</frame>
<item id="104094" />
search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104093" />
</frame>
<item id="104093" />
section-sign
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104096" />
</frame>
<item id="104096" />
section
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104095" />
</frame>
<item id="104095" />
seedling-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104098" />
</frame>
<item id="104098" />
seedling
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104097" />
</frame>
<item id="104097" />
select-all
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104100" />
</frame>
<item id="104100" />
select
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104099" />
</frame>
<item id="104099" />
selector
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104101" />
</frame>
<item id="104101" />
send-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104103" />
</frame>
<item id="104103" />
send-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104104" />
</frame>
<item id="104104" />
send
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104102" />
</frame>
<item id="104102" />
seo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104105" />
</frame>
<item id="104105" />
separator-horizontal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104107" />
</frame>
<item id="104107" />
separator-vertical
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104108" />
</frame>
<item id="104108" />
separator
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104106" />
</frame>
<item id="104106" />
server-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104110" />
</frame>
<item id="104110" />
server-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104111" />
</frame>
<item id="104111" />
server-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104112" />
</frame>
<item id="104112" />
server-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104113" />
</frame>
<item id="104113" />
server-spark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104114" />
</frame>
<item id="104114" />
server
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104109" />
</frame>
<item id="104109" />
servicemark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104115" />
</frame>
<item id="104115" />
settings-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104117" />
</frame>
<item id="104117" />
settings-automation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104118" />
</frame>
<item id="104118" />
settings-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104119" />
</frame>
<item id="104119" />
settings-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104120" />
</frame>
<item id="104120" />
settings-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104121" />
</frame>
<item id="104121" />
settings-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104122" />
</frame>
<item id="104122" />
settings-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104123" />
</frame>
<item id="104123" />
settings-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104124" />
</frame>
<item id="104124" />
settings-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104125" />
</frame>
<item id="104125" />
settings-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104126" />
</frame>
<item id="104126" />
settings-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104127" />
</frame>
<item id="104127" />
settings-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104128" />
</frame>
<item id="104128" />
settings-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104129" />
</frame>
<item id="104129" />
settings-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104130" />
</frame>
<item id="104130" />
settings-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104131" />
</frame>
<item id="104131" />
settings-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104132" />
</frame>
<item id="104132" />
settings-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104133" />
</frame>
<item id="104133" />
settings-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104134" />
</frame>
<item id="104134" />
settings-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104135" />
</frame>
<item id="104135" />
settings-spark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104136" />
</frame>
<item id="104136" />
settings-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104137" />
</frame>
<item id="104137" />
settings-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104138" />
</frame>
<item id="104138" />
settings-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104139" />
</frame>
<item id="104139" />
settings
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104116" />
</frame>
<item id="104116" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 4141-4230 of 4964 SVG files.
Back to section index
shadow-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104141" />
</frame>
<item id="104141" />
shadow
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104140" />
</frame>
<item id="104140" />
shape-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104143" />
</frame>
<item id="104143" />
shape-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104144" />
</frame>
<item id="104144" />
shape-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104145" />
</frame>
<item id="104145" />
shape
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104142" />
</frame>
<item id="104142" />
share-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104147" />
</frame>
<item id="104147" />
share-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104148" />
</frame>
<item id="104148" />
share-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104149" />
</frame>
<item id="104149" />
share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104146" />
</frame>
<item id="104146" />
shareplay
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104150" />
</frame>
<item id="104150" />
shield-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104152" />
</frame>
<item id="104152" />
shield-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104153" />
</frame>
<item id="104153" />
shield-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104154" />
</frame>
<item id="104154" />
shield-checkered
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104155" />
</frame>
<item id="104155" />
shield-chevron
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104156" />
</frame>
<item id="104156" />
shield-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104157" />
</frame>
<item id="104157" />
shield-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104158" />
</frame>
<item id="104158" />
shield-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104159" />
</frame>
<item id="104159" />
shield-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104160" />
</frame>
<item id="104160" />
shield-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104161" />
</frame>
<item id="104161" />
shield-half
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104162" />
</frame>
<item id="104162" />
shield-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104163" />
</frame>
<item id="104163" />
shield-lock
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104164" />
</frame>
<item id="104164" />
shield-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104165" />
</frame>
<item id="104165" />
shield-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104166" />
</frame>
<item id="104166" />
shield-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104167" />
</frame>
<item id="104167" />
shield-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104168" />
</frame>
<item id="104168" />
shield-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104169" />
</frame>
<item id="104169" />
shield-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104170" />
</frame>
<item id="104170" />
shield-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104171" />
</frame>
<item id="104171" />
shield-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104172" />
</frame>
<item id="104172" />
shield-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104173" />
</frame>
<item id="104173" />
shield-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104174" />
</frame>
<item id="104174" />
shield-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104175" />
</frame>
<item id="104175" />
shield
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104151" />
</frame>
<item id="104151" />
ship-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104177" />
</frame>
<item id="104177" />
ship
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104176" />
</frame>
<item id="104176" />
shirt-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104179" />
</frame>
<item id="104179" />
shirt-sport
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104180" />
</frame>
<item id="104180" />
shirt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104178" />
</frame>
<item id="104178" />
shoe-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104182" />
</frame>
<item id="104182" />
shoe
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104181" />
</frame>
<item id="104181" />
shopping-bag-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104184" />
</frame>
<item id="104184" />
shopping-bag-discount
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104185" />
</frame>
<item id="104185" />
shopping-bag-edit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104186" />
</frame>
<item id="104186" />
shopping-bag-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104187" />
</frame>
<item id="104187" />
shopping-bag-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104188" />
</frame>
<item id="104188" />
shopping-bag-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104189" />
</frame>
<item id="104189" />
shopping-bag-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104190" />
</frame>
<item id="104190" />
shopping-bag-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104191" />
</frame>
<item id="104191" />
shopping-bag-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104192" />
</frame>
<item id="104192" />
shopping-bag
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104183" />
</frame>
<item id="104183" />
shopping-cart-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104194" />
</frame>
<item id="104194" />
shopping-cart-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104195" />
</frame>
<item id="104195" />
shopping-cart-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104196" />
</frame>
<item id="104196" />
shopping-cart-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104197" />
</frame>
<item id="104197" />
shopping-cart-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104198" />
</frame>
<item id="104198" />
shopping-cart-copy
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104199" />
</frame>
<item id="104199" />
shopping-cart-discount
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104200" />
</frame>
<item id="104200" />
shopping-cart-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104201" />
</frame>
<item id="104201" />
shopping-cart-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104202" />
</frame>
<item id="104202" />
shopping-cart-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104203" />
</frame>
<item id="104203" />
shopping-cart-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104204" />
</frame>
<item id="104204" />
shopping-cart-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104205" />
</frame>
<item id="104205" />
shopping-cart-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104206" />
</frame>
<item id="104206" />
shopping-cart-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104207" />
</frame>
<item id="104207" />
shopping-cart-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104208" />
</frame>
<item id="104208" />
shopping-cart-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104209" />
</frame>
<item id="104209" />
shopping-cart-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104210" />
</frame>
<item id="104210" />
shopping-cart-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104211" />
</frame>
<item id="104211" />
shopping-cart-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104212" />
</frame>
<item id="104212" />
shopping-cart-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104213" />
</frame>
<item id="104213" />
shopping-cart-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104214" />
</frame>
<item id="104214" />
shopping-cart-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104215" />
</frame>
<item id="104215" />
shopping-cart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104193" />
</frame>
<item id="104193" />
shovel-pitchforks
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104217" />
</frame>
<item id="104217" />
shovel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104216" />
</frame>
<item id="104216" />
shredder
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104218" />
</frame>
<item id="104218" />
sign-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104219" />
</frame>
<item id="104219" />
sign-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104220" />
</frame>
<item id="104220" />
signal-2g
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104221" />
</frame>
<item id="104221" />
signal-3g
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104222" />
</frame>
<item id="104222" />
signal-4g-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104224" />
</frame>
<item id="104224" />
signal-4g
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104223" />
</frame>
<item id="104223" />
signal-5g
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104225" />
</frame>
<item id="104225" />
signal-6g
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104226" />
</frame>
<item id="104226" />
signal-e
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104227" />
</frame>
<item id="104227" />
signal-g
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104228" />
</frame>
<item id="104228" />
signal-h-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104230" />
</frame>
<item id="104230" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 4231-4320 of 4964 SVG files.
Back to section index
signal-h
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104229" />
</frame>
<item id="104229" />
signal-lte
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104231" />
</frame>
<item id="104231" />
signature-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104233" />
</frame>
<item id="104233" />
signature
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104232" />
</frame>
<item id="104232" />
sitemap-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104235" />
</frame>
<item id="104235" />
sitemap
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104234" />
</frame>
<item id="104234" />
skateboard-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104237" />
</frame>
<item id="104237" />
skateboard
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104236" />
</frame>
<item id="104236" />
skateboarding
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104238" />
</frame>
<item id="104238" />
skew-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104239" />
</frame>
<item id="104239" />
skew-y
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104240" />
</frame>
<item id="104240" />
ski-jumping
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104241" />
</frame>
<item id="104241" />
skull
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104242" />
</frame>
<item id="104242" />
slash
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104243" />
</frame>
<item id="104243" />
slashes
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104244" />
</frame>
<item id="104244" />
sleigh
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104245" />
</frame>
<item id="104245" />
slice
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104246" />
</frame>
<item id="104246" />
slideshow
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104247" />
</frame>
<item id="104247" />
smart-home-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104249" />
</frame>
<item id="104249" />
smart-home
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104248" />
</frame>
<item id="104248" />
smoking-no
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104251" />
</frame>
<item id="104251" />
smoking
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104250" />
</frame>
<item id="104250" />
snowboarding
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104252" />
</frame>
<item id="104252" />
snowflake-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104254" />
</frame>
<item id="104254" />
snowflake
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104253" />
</frame>
<item id="104253" />
snowman
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104255" />
</frame>
<item id="104255" />
soccer-field
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104256" />
</frame>
<item id="104256" />
social-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104258" />
</frame>
<item id="104258" />
social
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104257" />
</frame>
<item id="104257" />
sock
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104259" />
</frame>
<item id="104259" />
sofa-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104261" />
</frame>
<item id="104261" />
sofa
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104260" />
</frame>
<item id="104260" />
solar-electricity
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104262" />
</frame>
<item id="104262" />
solar-panel-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104264" />
</frame>
<item id="104264" />
solar-panel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104263" />
</frame>
<item id="104263" />
sort-0-9
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104265" />
</frame>
<item id="104265" />
sort-9-0
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104266" />
</frame>
<item id="104266" />
sort-a-z
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104267" />
</frame>
<item id="104267" />
sort-ascending-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104269" />
</frame>
<item id="104269" />
sort-ascending-letters
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104270" />
</frame>
<item id="104270" />
sort-ascending-numbers
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104271" />
</frame>
<item id="104271" />
sort-ascending-shapes
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104272" />
</frame>
<item id="104272" />
sort-ascending-small-big
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104273" />
</frame>
<item id="104273" />
sort-ascending
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104268" />
</frame>
<item id="104268" />
sort-descending-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104275" />
</frame>
<item id="104275" />
sort-descending-letters
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104276" />
</frame>
<item id="104276" />
sort-descending-numbers
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104277" />
</frame>
<item id="104277" />
sort-descending-shapes
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104278" />
</frame>
<item id="104278" />
sort-descending-small-big
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104279" />
</frame>
<item id="104279" />
sort-descending
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104274" />
</frame>
<item id="104274" />
sort-z-a
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104280" />
</frame>
<item id="104280" />
sos
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104281" />
</frame>
<item id="104281" />
soup-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104283" />
</frame>
<item id="104283" />
soup
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104282" />
</frame>
<item id="104282" />
source-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104284" />
</frame>
<item id="104284" />
space-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104286" />
</frame>
<item id="104286" />
space
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104285" />
</frame>
<item id="104285" />
spaces
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104287" />
</frame>
<item id="104287" />
spacing-horizontal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104288" />
</frame>
<item id="104288" />
spacing-vertical
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104289" />
</frame>
<item id="104289" />
spade
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104290" />
</frame>
<item id="104290" />
sparkles
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104291" />
</frame>
<item id="104291" />
speakerphone
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104292" />
</frame>
<item id="104292" />
speedboat
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104293" />
</frame>
<item id="104293" />
sphere-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104295" />
</frame>
<item id="104295" />
sphere-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104296" />
</frame>
<item id="104296" />
sphere
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104294" />
</frame>
<item id="104294" />
spider
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104297" />
</frame>
<item id="104297" />
spiral-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104299" />
</frame>
<item id="104299" />
spiral
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104298" />
</frame>
<item id="104298" />
sport-billard
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104300" />
</frame>
<item id="104300" />
spray
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104301" />
</frame>
<item id="104301" />
spy-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104303" />
</frame>
<item id="104303" />
spy
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104302" />
</frame>
<item id="104302" />
sql
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104304" />
</frame>
<item id="104304" />
square-arrow-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104306" />
</frame>
<item id="104306" />
square-arrow-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104307" />
</frame>
<item id="104307" />
square-arrow-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104308" />
</frame>
<item id="104308" />
square-arrow-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104309" />
</frame>
<item id="104309" />
square-asterisk
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104310" />
</frame>
<item id="104310" />
square-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104311" />
</frame>
<item id="104311" />
square-chevron-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104312" />
</frame>
<item id="104312" />
square-chevron-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104313" />
</frame>
<item id="104313" />
square-chevron-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104314" />
</frame>
<item id="104314" />
square-chevron-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104315" />
</frame>
<item id="104315" />
square-chevrons-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104316" />
</frame>
<item id="104316" />
square-chevrons-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104317" />
</frame>
<item id="104317" />
square-chevrons-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104318" />
</frame>
<item id="104318" />
square-chevrons-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104319" />
</frame>
<item id="104319" />
square-dashed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104320" />
</frame>
<item id="104320" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 4321-4410 of 4964 SVG files.
Back to section index
square-dot
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104321" />
</frame>
<item id="104321" />
square-f0
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104322" />
</frame>
<item id="104322" />
square-f1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104323" />
</frame>
<item id="104323" />
square-f2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104324" />
</frame>
<item id="104324" />
square-f3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104325" />
</frame>
<item id="104325" />
square-f4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104326" />
</frame>
<item id="104326" />
square-f5
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104327" />
</frame>
<item id="104327" />
square-f6
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104328" />
</frame>
<item id="104328" />
square-f7
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104329" />
</frame>
<item id="104329" />
square-f8
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104330" />
</frame>
<item id="104330" />
square-f9
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104331" />
</frame>
<item id="104331" />
square-forbid-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104333" />
</frame>
<item id="104333" />
square-forbid
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104332" />
</frame>
<item id="104332" />
square-half
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104334" />
</frame>
<item id="104334" />
square-key
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104335" />
</frame>
<item id="104335" />
square-letter-a
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104336" />
</frame>
<item id="104336" />
square-letter-b
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104337" />
</frame>
<item id="104337" />
square-letter-c
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104338" />
</frame>
<item id="104338" />
square-letter-d
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104339" />
</frame>
<item id="104339" />
square-letter-e
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104340" />
</frame>
<item id="104340" />
square-letter-f
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104341" />
</frame>
<item id="104341" />
square-letter-g
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104342" />
</frame>
<item id="104342" />
square-letter-h
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104343" />
</frame>
<item id="104343" />
square-letter-i
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104344" />
</frame>
<item id="104344" />
square-letter-j
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104345" />
</frame>
<item id="104345" />
square-letter-k
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104346" />
</frame>
<item id="104346" />
square-letter-l
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104347" />
</frame>
<item id="104347" />
square-letter-m
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104348" />
</frame>
<item id="104348" />
square-letter-n
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104349" />
</frame>
<item id="104349" />
square-letter-o
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104350" />
</frame>
<item id="104350" />
square-letter-p
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104351" />
</frame>
<item id="104351" />
square-letter-q
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104352" />
</frame>
<item id="104352" />
square-letter-r
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104353" />
</frame>
<item id="104353" />
square-letter-s
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104354" />
</frame>
<item id="104354" />
square-letter-t
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104355" />
</frame>
<item id="104355" />
square-letter-u
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104356" />
</frame>
<item id="104356" />
square-letter-v
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104357" />
</frame>
<item id="104357" />
square-letter-w
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104358" />
</frame>
<item id="104358" />
square-letter-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104359" />
</frame>
<item id="104359" />
square-letter-y
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104360" />
</frame>
<item id="104360" />
square-letter-z
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104361" />
</frame>
<item id="104361" />
square-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104362" />
</frame>
<item id="104362" />
square-number-0
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104363" />
</frame>
<item id="104363" />
square-number-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104364" />
</frame>
<item id="104364" />
square-number-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104365" />
</frame>
<item id="104365" />
square-number-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104366" />
</frame>
<item id="104366" />
square-number-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104367" />
</frame>
<item id="104367" />
square-number-5
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104368" />
</frame>
<item id="104368" />
square-number-6
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104369" />
</frame>
<item id="104369" />
square-number-7
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104370" />
</frame>
<item id="104370" />
square-number-8
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104371" />
</frame>
<item id="104371" />
square-number-9
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104372" />
</frame>
<item id="104372" />
square-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104373" />
</frame>
<item id="104373" />
square-percentage
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104374" />
</frame>
<item id="104374" />
square-plus-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104376" />
</frame>
<item id="104376" />
square-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104375" />
</frame>
<item id="104375" />
square-root-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104378" />
</frame>
<item id="104378" />
square-root
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104377" />
</frame>
<item id="104377" />
square-rotated-forbid-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104381" />
</frame>
<item id="104381" />
square-rotated-forbid
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104380" />
</frame>
<item id="104380" />
square-rotated-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104382" />
</frame>
<item id="104382" />
square-rotated
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104379" />
</frame>
<item id="104379" />
square-rounded-arrow-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104384" />
</frame>
<item id="104384" />
square-rounded-arrow-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104385" />
</frame>
<item id="104385" />
square-rounded-arrow-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104386" />
</frame>
<item id="104386" />
square-rounded-arrow-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104387" />
</frame>
<item id="104387" />
square-rounded-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104388" />
</frame>
<item id="104388" />
square-rounded-chevron-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104389" />
</frame>
<item id="104389" />
square-rounded-chevron-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104390" />
</frame>
<item id="104390" />
square-rounded-chevron-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104391" />
</frame>
<item id="104391" />
square-rounded-chevron-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104392" />
</frame>
<item id="104392" />
square-rounded-chevrons-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104393" />
</frame>
<item id="104393" />
square-rounded-chevrons-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104394" />
</frame>
<item id="104394" />
square-rounded-chevrons-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104395" />
</frame>
<item id="104395" />
square-rounded-chevrons-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104396" />
</frame>
<item id="104396" />
square-rounded-letter-a
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104397" />
</frame>
<item id="104397" />
square-rounded-letter-b
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104398" />
</frame>
<item id="104398" />
square-rounded-letter-c
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104399" />
</frame>
<item id="104399" />
square-rounded-letter-d
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104400" />
</frame>
<item id="104400" />
square-rounded-letter-e
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104401" />
</frame>
<item id="104401" />
square-rounded-letter-f
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104402" />
</frame>
<item id="104402" />
square-rounded-letter-g
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104403" />
</frame>
<item id="104403" />
square-rounded-letter-h
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104404" />
</frame>
<item id="104404" />
square-rounded-letter-i
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104405" />
</frame>
<item id="104405" />
square-rounded-letter-j
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104406" />
</frame>
<item id="104406" />
square-rounded-letter-k
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104407" />
</frame>
<item id="104407" />
square-rounded-letter-l
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104408" />
</frame>
<item id="104408" />
square-rounded-letter-m
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104409" />
</frame>
<item id="104409" />
square-rounded-letter-n
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104410" />
</frame>
<item id="104410" />
square-rounded-letter-o
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104411" />
</frame>
<item id="104411" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 4411-4500 of 4964 SVG files.
Back to section index
square-rounded-letter-p
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104412" />
</frame>
<item id="104412" />
square-rounded-letter-q
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104413" />
</frame>
<item id="104413" />
square-rounded-letter-r
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104414" />
</frame>
<item id="104414" />
square-rounded-letter-s
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104415" />
</frame>
<item id="104415" />
square-rounded-letter-t
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104416" />
</frame>
<item id="104416" />
square-rounded-letter-u
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104417" />
</frame>
<item id="104417" />
square-rounded-letter-v
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104418" />
</frame>
<item id="104418" />
square-rounded-letter-w
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104419" />
</frame>
<item id="104419" />
square-rounded-letter-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104420" />
</frame>
<item id="104420" />
square-rounded-letter-y
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104421" />
</frame>
<item id="104421" />
square-rounded-letter-z
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104422" />
</frame>
<item id="104422" />
square-rounded-minus-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104424" />
</frame>
<item id="104424" />
square-rounded-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104423" />
</frame>
<item id="104423" />
square-rounded-number-0
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104425" />
</frame>
<item id="104425" />
square-rounded-number-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104426" />
</frame>
<item id="104426" />
square-rounded-number-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104427" />
</frame>
<item id="104427" />
square-rounded-number-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104428" />
</frame>
<item id="104428" />
square-rounded-number-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104429" />
</frame>
<item id="104429" />
square-rounded-number-5
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104430" />
</frame>
<item id="104430" />
square-rounded-number-6
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104431" />
</frame>
<item id="104431" />
square-rounded-number-7
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104432" />
</frame>
<item id="104432" />
square-rounded-number-8
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104433" />
</frame>
<item id="104433" />
square-rounded-number-9
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104434" />
</frame>
<item id="104434" />
square-rounded-percentage
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104435" />
</frame>
<item id="104435" />
square-rounded-plus-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104437" />
</frame>
<item id="104437" />
square-rounded-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104436" />
</frame>
<item id="104436" />
square-rounded-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104438" />
</frame>
<item id="104438" />
square-rounded
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104383" />
</frame>
<item id="104383" />
square-toggle-horizontal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104440" />
</frame>
<item id="104440" />
square-toggle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104439" />
</frame>
<item id="104439" />
square-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104441" />
</frame>
<item id="104441" />
square
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104305" />
</frame>
<item id="104305" />
squares-diagonal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104443" />
</frame>
<item id="104443" />
squares-selected
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104444" />
</frame>
<item id="104444" />
squares
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104442" />
</frame>
<item id="104442" />
stack-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104446" />
</frame>
<item id="104446" />
stack-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104447" />
</frame>
<item id="104447" />
stack-back
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104448" />
</frame>
<item id="104448" />
stack-backward
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104449" />
</frame>
<item id="104449" />
stack-forward
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104450" />
</frame>
<item id="104450" />
stack-front
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104451" />
</frame>
<item id="104451" />
stack-middle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104452" />
</frame>
<item id="104452" />
stack-pop
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104453" />
</frame>
<item id="104453" />
stack-push
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104454" />
</frame>
<item id="104454" />
stack
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104445" />
</frame>
<item id="104445" />
stairs-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104456" />
</frame>
<item id="104456" />
stairs-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104457" />
</frame>
<item id="104457" />
stairs
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104455" />
</frame>
<item id="104455" />
star-half
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104459" />
</frame>
<item id="104459" />
star-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104460" />
</frame>
<item id="104460" />
star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104458" />
</frame>
<item id="104458" />
stars-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104462" />
</frame>
<item id="104462" />
stars
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104461" />
</frame>
<item id="104461" />
status-change
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104463" />
</frame>
<item id="104463" />
steam
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104464" />
</frame>
<item id="104464" />
steering-wheel-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104466" />
</frame>
<item id="104466" />
steering-wheel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104465" />
</frame>
<item id="104465" />
step-into
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104467" />
</frame>
<item id="104467" />
step-out
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104468" />
</frame>
<item id="104468" />
stereo-glasses
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104469" />
</frame>
<item id="104469" />
stethoscope-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104471" />
</frame>
<item id="104471" />
stethoscope
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104470" />
</frame>
<item id="104470" />
sticker-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104473" />
</frame>
<item id="104473" />
sticker
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104472" />
</frame>
<item id="104472" />
stopwatch
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104474" />
</frame>
<item id="104474" />
storm-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104476" />
</frame>
<item id="104476" />
storm
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104475" />
</frame>
<item id="104475" />
stretching-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104478" />
</frame>
<item id="104478" />
stretching
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104477" />
</frame>
<item id="104477" />
strikethrough
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104479" />
</frame>
<item id="104479" />
submarine
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104480" />
</frame>
<item id="104480" />
subscript
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104481" />
</frame>
<item id="104481" />
subtask
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104482" />
</frame>
<item id="104482" />
sum-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104484" />
</frame>
<item id="104484" />
sum
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104483" />
</frame>
<item id="104483" />
sun-electricity
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104486" />
</frame>
<item id="104486" />
sun-high
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104487" />
</frame>
<item id="104487" />
sun-low
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104488" />
</frame>
<item id="104488" />
sun-moon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104489" />
</frame>
<item id="104489" />
sun-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104490" />
</frame>
<item id="104490" />
sun-wind
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104491" />
</frame>
<item id="104491" />
sun
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104485" />
</frame>
<item id="104485" />
sunglasses
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104492" />
</frame>
<item id="104492" />
sunrise
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104493" />
</frame>
<item id="104493" />
sunset-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104495" />
</frame>
<item id="104495" />
sunset
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104494" />
</frame>
<item id="104494" />
superscript
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104496" />
</frame>
<item id="104496" />
svg
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104497" />
</frame>
<item id="104497" />
swimming
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104498" />
</frame>
<item id="104498" />
swipe-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104500" />
</frame>
<item id="104500" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 4501-4590 of 4964 SVG files.
Back to section index
swipe-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104501" />
</frame>
<item id="104501" />
swipe-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104502" />
</frame>
<item id="104502" />
swipe-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104503" />
</frame>
<item id="104503" />
swipe
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104499" />
</frame>
<item id="104499" />
switch-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104505" />
</frame>
<item id="104505" />
switch-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104506" />
</frame>
<item id="104506" />
switch-horizontal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104507" />
</frame>
<item id="104507" />
switch-vertical
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104508" />
</frame>
<item id="104508" />
switch
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104504" />
</frame>
<item id="104504" />
sword-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104510" />
</frame>
<item id="104510" />
sword
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104509" />
</frame>
<item id="104509" />
swords
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104511" />
</frame>
<item id="104511" />
table-alias
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104513" />
</frame>
<item id="104513" />
table-column
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104514" />
</frame>
<item id="104514" />
table-dashed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104515" />
</frame>
<item id="104515" />
table-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104516" />
</frame>
<item id="104516" />
table-export
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104517" />
</frame>
<item id="104517" />
table-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104518" />
</frame>
<item id="104518" />
table-import
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104519" />
</frame>
<item id="104519" />
table-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104520" />
</frame>
<item id="104520" />
table-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104521" />
</frame>
<item id="104521" />
table-options
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104522" />
</frame>
<item id="104522" />
table-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104523" />
</frame>
<item id="104523" />
table-row
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104524" />
</frame>
<item id="104524" />
table-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104525" />
</frame>
<item id="104525" />
table-shortcut
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104526" />
</frame>
<item id="104526" />
table-spark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104527" />
</frame>
<item id="104527" />
table
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104512" />
</frame>
<item id="104512" />
tag-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104529" />
</frame>
<item id="104529" />
tag-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104530" />
</frame>
<item id="104530" />
tag-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104531" />
</frame>
<item id="104531" />
tag-starred
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104532" />
</frame>
<item id="104532" />
tag
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104528" />
</frame>
<item id="104528" />
tags-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104534" />
</frame>
<item id="104534" />
tags
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104533" />
</frame>
<item id="104533" />
tallymark-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104535" />
</frame>
<item id="104535" />
tallymark-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104536" />
</frame>
<item id="104536" />
tallymark-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104537" />
</frame>
<item id="104537" />
tallymark-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104538" />
</frame>
<item id="104538" />
tallymarks
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104539" />
</frame>
<item id="104539" />
tank
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104540" />
</frame>
<item id="104540" />
target-arrow
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104542" />
</frame>
<item id="104542" />
target-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104543" />
</frame>
<item id="104543" />
target
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104541" />
</frame>
<item id="104541" />
tax-euro
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104545" />
</frame>
<item id="104545" />
tax-pound
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104546" />
</frame>
<item id="104546" />
tax
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104544" />
</frame>
<item id="104544" />
teapot
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104547" />
</frame>
<item id="104547" />
telescope-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104549" />
</frame>
<item id="104549" />
telescope
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104548" />
</frame>
<item id="104548" />
temperature-celsius
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104551" />
</frame>
<item id="104551" />
temperature-fahrenheit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104552" />
</frame>
<item id="104552" />
temperature-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104553" />
</frame>
<item id="104553" />
temperature-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104554" />
</frame>
<item id="104554" />
temperature-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104555" />
</frame>
<item id="104555" />
temperature-snow
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104556" />
</frame>
<item id="104556" />
temperature-sun
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104557" />
</frame>
<item id="104557" />
temperature
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104550" />
</frame>
<item id="104550" />
template-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104559" />
</frame>
<item id="104559" />
template
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104558" />
</frame>
<item id="104558" />
tent-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104561" />
</frame>
<item id="104561" />
tent
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104560" />
</frame>
<item id="104560" />
terminal-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104563" />
</frame>
<item id="104563" />
terminal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104562" />
</frame>
<item id="104562" />
test-pipe-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104565" />
</frame>
<item id="104565" />
test-pipe-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104566" />
</frame>
<item id="104566" />
test-pipe
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104564" />
</frame>
<item id="104564" />
tex
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104567" />
</frame>
<item id="104567" />
text-caption
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104568" />
</frame>
<item id="104568" />
text-color
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104569" />
</frame>
<item id="104569" />
text-decrease
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104570" />
</frame>
<item id="104570" />
text-direction-ltr
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104571" />
</frame>
<item id="104571" />
text-direction-rtl
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104572" />
</frame>
<item id="104572" />
text-grammar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104573" />
</frame>
<item id="104573" />
text-increase
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104574" />
</frame>
<item id="104574" />
text-orientation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104575" />
</frame>
<item id="104575" />
text-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104576" />
</frame>
<item id="104576" />
text-recognition
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104577" />
</frame>
<item id="104577" />
text-resize
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104578" />
</frame>
<item id="104578" />
text-scan-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104579" />
</frame>
<item id="104579" />
text-size
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104580" />
</frame>
<item id="104580" />
text-spellcheck
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104581" />
</frame>
<item id="104581" />
text-wrap-column
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104583" />
</frame>
<item id="104583" />
text-wrap-disabled
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104584" />
</frame>
<item id="104584" />
text-wrap
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104582" />
</frame>
<item id="104582" />
texture
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104585" />
</frame>
<item id="104585" />
theater
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104586" />
</frame>
<item id="104586" />
thermometer
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104587" />
</frame>
<item id="104587" />
thumb-down-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104589" />
</frame>
<item id="104589" />
thumb-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104588" />
</frame>
<item id="104588" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 4591-4680 of 4964 SVG files.
Back to section index
thumb-up-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104591" />
</frame>
<item id="104591" />
thumb-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104590" />
</frame>
<item id="104590" />
tic-tac
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104592" />
</frame>
<item id="104592" />
ticket-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104594" />
</frame>
<item id="104594" />
ticket
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104593" />
</frame>
<item id="104593" />
tie
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104595" />
</frame>
<item id="104595" />
tilde
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104596" />
</frame>
<item id="104596" />
tilt-shift-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104598" />
</frame>
<item id="104598" />
tilt-shift
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104597" />
</frame>
<item id="104597" />
time-duration-0
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104599" />
</frame>
<item id="104599" />
time-duration-10
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104600" />
</frame>
<item id="104600" />
time-duration-15
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104601" />
</frame>
<item id="104601" />
time-duration-30
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104602" />
</frame>
<item id="104602" />
time-duration-45
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104603" />
</frame>
<item id="104603" />
time-duration-5
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104604" />
</frame>
<item id="104604" />
time-duration-60
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104605" />
</frame>
<item id="104605" />
time-duration-90
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104606" />
</frame>
<item id="104606" />
time-duration-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104607" />
</frame>
<item id="104607" />
timeline-event-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104610" />
</frame>
<item id="104610" />
timeline-event-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104611" />
</frame>
<item id="104611" />
timeline-event-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104612" />
</frame>
<item id="104612" />
timeline-event-text
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104613" />
</frame>
<item id="104613" />
timeline-event-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104614" />
</frame>
<item id="104614" />
timeline-event
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104609" />
</frame>
<item id="104609" />
timeline
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104608" />
</frame>
<item id="104608" />
timezone
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104615" />
</frame>
<item id="104615" />
tip-jar-euro
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104617" />
</frame>
<item id="104617" />
tip-jar-pound
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104618" />
</frame>
<item id="104618" />
tip-jar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104616" />
</frame>
<item id="104616" />
tir
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104619" />
</frame>
<item id="104619" />
toggle-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104620" />
</frame>
<item id="104620" />
toggle-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104621" />
</frame>
<item id="104621" />
toilet-paper-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104623" />
</frame>
<item id="104623" />
toilet-paper
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104622" />
</frame>
<item id="104622" />
toml
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104624" />
</frame>
<item id="104624" />
tool
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104625" />
</frame>
<item id="104625" />
tools-kitchen-2-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104629" />
</frame>
<item id="104629" />
tools-kitchen-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104628" />
</frame>
<item id="104628" />
tools-kitchen-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104630" />
</frame>
<item id="104630" />
tools-kitchen-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104631" />
</frame>
<item id="104631" />
tools-kitchen
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104627" />
</frame>
<item id="104627" />
tools-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104632" />
</frame>
<item id="104632" />
tools
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104626" />
</frame>
<item id="104626" />
tooltip
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104633" />
</frame>
<item id="104633" />
topology-bus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104634" />
</frame>
<item id="104634" />
topology-complex
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104635" />
</frame>
<item id="104635" />
topology-full-hierarchy
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104637" />
</frame>
<item id="104637" />
topology-full
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104636" />
</frame>
<item id="104636" />
topology-ring-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104639" />
</frame>
<item id="104639" />
topology-ring-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104640" />
</frame>
<item id="104640" />
topology-ring
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104638" />
</frame>
<item id="104638" />
topology-star-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104642" />
</frame>
<item id="104642" />
topology-star-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104643" />
</frame>
<item id="104643" />
topology-star-ring-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104645" />
</frame>
<item id="104645" />
topology-star-ring-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104646" />
</frame>
<item id="104646" />
topology-star-ring
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104644" />
</frame>
<item id="104644" />
topology-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104641" />
</frame>
<item id="104641" />
torii
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104647" />
</frame>
<item id="104647" />
tornado
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104648" />
</frame>
<item id="104648" />
tournament
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104649" />
</frame>
<item id="104649" />
tower-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104651" />
</frame>
<item id="104651" />
tower
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104650" />
</frame>
<item id="104650" />
track
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104652" />
</frame>
<item id="104652" />
tractor
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104653" />
</frame>
<item id="104653" />
trademark
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104654" />
</frame>
<item id="104654" />
traffic-cone-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104656" />
</frame>
<item id="104656" />
traffic-cone
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104655" />
</frame>
<item id="104655" />
traffic-lights-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104658" />
</frame>
<item id="104658" />
traffic-lights
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104657" />
</frame>
<item id="104657" />
train
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104659" />
</frame>
<item id="104659" />
transaction-bitcoin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104660" />
</frame>
<item id="104660" />
transaction-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104661" />
</frame>
<item id="104661" />
transaction-euro
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104662" />
</frame>
<item id="104662" />
transaction-pound
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104663" />
</frame>
<item id="104663" />
transaction-rupee
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104664" />
</frame>
<item id="104664" />
transaction-yen
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104665" />
</frame>
<item id="104665" />
transaction-yuan
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104666" />
</frame>
<item id="104666" />
transfer-in
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104668" />
</frame>
<item id="104668" />
transfer-out
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104669" />
</frame>
<item id="104669" />
transfer-vertical
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104670" />
</frame>
<item id="104670" />
transfer
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104667" />
</frame>
<item id="104667" />
transform-point-bottom-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104673" />
</frame>
<item id="104673" />
transform-point-bottom-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104674" />
</frame>
<item id="104674" />
transform-point-top-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104675" />
</frame>
<item id="104675" />
transform-point-top-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104676" />
</frame>
<item id="104676" />
transform-point
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104672" />
</frame>
<item id="104672" />
transform
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104671" />
</frame>
<item id="104671" />
transition-bottom
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104677" />
</frame>
<item id="104677" />
transition-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104678" />
</frame>
<item id="104678" />
transition-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104679" />
</frame>
<item id="104679" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 4681-4770 of 4964 SVG files.
Back to section index
transition-top
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104680" />
</frame>
<item id="104680" />
trash-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104682" />
</frame>
<item id="104682" />
trash-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104683" />
</frame>
<item id="104683" />
trash
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104681" />
</frame>
<item id="104681" />
treadmill
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104684" />
</frame>
<item id="104684" />
tree
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104685" />
</frame>
<item id="104685" />
trees
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104686" />
</frame>
<item id="104686" />
trekking
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104687" />
</frame>
<item id="104687" />
trending-down-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104689" />
</frame>
<item id="104689" />
trending-down-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104690" />
</frame>
<item id="104690" />
trending-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104688" />
</frame>
<item id="104688" />
trending-up-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104692" />
</frame>
<item id="104692" />
trending-up-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104693" />
</frame>
<item id="104693" />
trending-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104691" />
</frame>
<item id="104691" />
triangle-inverted
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104695" />
</frame>
<item id="104695" />
triangle-minus-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104697" />
</frame>
<item id="104697" />
triangle-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104696" />
</frame>
<item id="104696" />
triangle-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104698" />
</frame>
<item id="104698" />
triangle-plus-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104700" />
</frame>
<item id="104700" />
triangle-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104699" />
</frame>
<item id="104699" />
triangle-square-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104701" />
</frame>
<item id="104701" />
triangle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104694" />
</frame>
<item id="104694" />
triangles
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104702" />
</frame>
<item id="104702" />
trident
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104703" />
</frame>
<item id="104703" />
trolley
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104704" />
</frame>
<item id="104704" />
trophy-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104706" />
</frame>
<item id="104706" />
trophy
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104705" />
</frame>
<item id="104705" />
trowel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104707" />
</frame>
<item id="104707" />
truck-delivery
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104709" />
</frame>
<item id="104709" />
truck-loading
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104710" />
</frame>
<item id="104710" />
truck-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104711" />
</frame>
<item id="104711" />
truck-return
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104712" />
</frame>
<item id="104712" />
truck
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104708" />
</frame>
<item id="104708" />
txt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104713" />
</frame>
<item id="104713" />
typeface
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104714" />
</frame>
<item id="104714" />
typography-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104716" />
</frame>
<item id="104716" />
typography
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104715" />
</frame>
<item id="104715" />
u-turn-left
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104717" />
</frame>
<item id="104717" />
u-turn-right
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104718" />
</frame>
<item id="104718" />
ufo-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104720" />
</frame>
<item id="104720" />
ufo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104719" />
</frame>
<item id="104719" />
uhd
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104721" />
</frame>
<item id="104721" />
umbrella-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104723" />
</frame>
<item id="104723" />
umbrella-closed-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104725" />
</frame>
<item id="104725" />
umbrella-closed
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104724" />
</frame>
<item id="104724" />
umbrella-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104726" />
</frame>
<item id="104726" />
umbrella
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104722" />
</frame>
<item id="104722" />
underline
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104727" />
</frame>
<item id="104727" />
universe
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104728" />
</frame>
<item id="104728" />
unlink
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104729" />
</frame>
<item id="104729" />
upload
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104730" />
</frame>
<item id="104730" />
urgent
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104731" />
</frame>
<item id="104731" />
usb
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104732" />
</frame>
<item id="104732" />
user-bitcoin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104734" />
</frame>
<item id="104734" />
user-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104735" />
</frame>
<item id="104735" />
user-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104736" />
</frame>
<item id="104736" />
user-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104737" />
</frame>
<item id="104737" />
user-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104738" />
</frame>
<item id="104738" />
user-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104739" />
</frame>
<item id="104739" />
user-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104740" />
</frame>
<item id="104740" />
user-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104741" />
</frame>
<item id="104741" />
user-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104742" />
</frame>
<item id="104742" />
user-edit
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104743" />
</frame>
<item id="104743" />
user-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104744" />
</frame>
<item id="104744" />
user-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104745" />
</frame>
<item id="104745" />
user-hexagon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104746" />
</frame>
<item id="104746" />
user-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104747" />
</frame>
<item id="104747" />
user-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104748" />
</frame>
<item id="104748" />
user-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104749" />
</frame>
<item id="104749" />
user-pentagon
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104750" />
</frame>
<item id="104750" />
user-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104751" />
</frame>
<item id="104751" />
user-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104752" />
</frame>
<item id="104752" />
user-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104753" />
</frame>
<item id="104753" />
user-scan
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104754" />
</frame>
<item id="104754" />
user-screen
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104755" />
</frame>
<item id="104755" />
user-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104756" />
</frame>
<item id="104756" />
user-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104757" />
</frame>
<item id="104757" />
user-shield
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104758" />
</frame>
<item id="104758" />
user-square-rounded
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104760" />
</frame>
<item id="104760" />
user-square
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104759" />
</frame>
<item id="104759" />
user-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104761" />
</frame>
<item id="104761" />
user-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104762" />
</frame>
<item id="104762" />
user-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104763" />
</frame>
<item id="104763" />
user
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104733" />
</frame>
<item id="104733" />
users-group
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104765" />
</frame>
<item id="104765" />
users-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104766" />
</frame>
<item id="104766" />
users-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104767" />
</frame>
<item id="104767" />
users
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104764" />
</frame>
<item id="104764" />
uv-index
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104768" />
</frame>
<item id="104768" />
ux-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104769" />
</frame>
<item id="104769" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 4771-4860 of 4964 SVG files.
Back to section index
vaccine-bottle-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104772" />
</frame>
<item id="104772" />
vaccine-bottle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104771" />
</frame>
<item id="104771" />
vaccine-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104773" />
</frame>
<item id="104773" />
vaccine
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104770" />
</frame>
<item id="104770" />
vacuum-cleaner
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104774" />
</frame>
<item id="104774" />
variable-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104776" />
</frame>
<item id="104776" />
variable-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104777" />
</frame>
<item id="104777" />
variable-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104778" />
</frame>
<item id="104778" />
variable
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104775" />
</frame>
<item id="104775" />
vector-bezier-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104781" />
</frame>
<item id="104781" />
vector-bezier-arc
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104782" />
</frame>
<item id="104782" />
vector-bezier-circle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104783" />
</frame>
<item id="104783" />
vector-bezier
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104780" />
</frame>
<item id="104780" />
vector-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104784" />
</frame>
<item id="104784" />
vector-spline
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104785" />
</frame>
<item id="104785" />
vector-triangle-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104787" />
</frame>
<item id="104787" />
vector-triangle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104786" />
</frame>
<item id="104786" />
vector
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104779" />
</frame>
<item id="104779" />
venus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104788" />
</frame>
<item id="104788" />
versions-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104790" />
</frame>
<item id="104790" />
versions
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104789" />
</frame>
<item id="104789" />
video-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104792" />
</frame>
<item id="104792" />
video-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104793" />
</frame>
<item id="104793" />
video-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104794" />
</frame>
<item id="104794" />
video
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104791" />
</frame>
<item id="104791" />
view-360-arrow
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104796" />
</frame>
<item id="104796" />
view-360-number
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104797" />
</frame>
<item id="104797" />
view-360-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104798" />
</frame>
<item id="104798" />
view-360
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104795" />
</frame>
<item id="104795" />
viewfinder-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104800" />
</frame>
<item id="104800" />
viewfinder
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104799" />
</frame>
<item id="104799" />
viewport-narrow
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104801" />
</frame>
<item id="104801" />
viewport-short
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104802" />
</frame>
<item id="104802" />
viewport-tall
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104803" />
</frame>
<item id="104803" />
viewport-wide
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104804" />
</frame>
<item id="104804" />
vinyl
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104805" />
</frame>
<item id="104805" />
vip-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104807" />
</frame>
<item id="104807" />
vip
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104806" />
</frame>
<item id="104806" />
virus-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104809" />
</frame>
<item id="104809" />
virus-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104810" />
</frame>
<item id="104810" />
virus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104808" />
</frame>
<item id="104808" />
vocabulary-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104812" />
</frame>
<item id="104812" />
vocabulary
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104811" />
</frame>
<item id="104811" />
volcano
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104813" />
</frame>
<item id="104813" />
volume-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104815" />
</frame>
<item id="104815" />
volume-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104816" />
</frame>
<item id="104816" />
volume-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104817" />
</frame>
<item id="104817" />
volume
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104814" />
</frame>
<item id="104814" />
vs
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104818" />
</frame>
<item id="104818" />
walk
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104819" />
</frame>
<item id="104819" />
wall-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104821" />
</frame>
<item id="104821" />
wall
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104820" />
</frame>
<item id="104820" />
wallet-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104823" />
</frame>
<item id="104823" />
wallet
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104822" />
</frame>
<item id="104822" />
wallpaper-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104825" />
</frame>
<item id="104825" />
wallpaper
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104824" />
</frame>
<item id="104824" />
wand-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104827" />
</frame>
<item id="104827" />
wand
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104826" />
</frame>
<item id="104826" />
wash-dry-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104830" />
</frame>
<item id="104830" />
wash-dry-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104831" />
</frame>
<item id="104831" />
wash-dry-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104832" />
</frame>
<item id="104832" />
wash-dry-a
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104833" />
</frame>
<item id="104833" />
wash-dry-dip
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104834" />
</frame>
<item id="104834" />
wash-dry-f
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104835" />
</frame>
<item id="104835" />
wash-dry-flat
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104836" />
</frame>
<item id="104836" />
wash-dry-hang
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104837" />
</frame>
<item id="104837" />
wash-dry-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104838" />
</frame>
<item id="104838" />
wash-dry-p
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104839" />
</frame>
<item id="104839" />
wash-dry-shade
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104840" />
</frame>
<item id="104840" />
wash-dry-w
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104841" />
</frame>
<item id="104841" />
wash-dry
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104829" />
</frame>
<item id="104829" />
wash-dryclean-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104843" />
</frame>
<item id="104843" />
wash-dryclean
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104842" />
</frame>
<item id="104842" />
wash-eco
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104844" />
</frame>
<item id="104844" />
wash-gentle
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104845" />
</frame>
<item id="104845" />
wash-hand
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104846" />
</frame>
<item id="104846" />
wash-machine
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104847" />
</frame>
<item id="104847" />
wash-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104848" />
</frame>
<item id="104848" />
wash-press
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104849" />
</frame>
<item id="104849" />
wash-temperature-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104850" />
</frame>
<item id="104850" />
wash-temperature-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104851" />
</frame>
<item id="104851" />
wash-temperature-3
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104852" />
</frame>
<item id="104852" />
wash-temperature-4
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104853" />
</frame>
<item id="104853" />
wash-temperature-5
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104854" />
</frame>
<item id="104854" />
wash-temperature-6
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104855" />
</frame>
<item id="104855" />
wash-tumble-dry
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104856" />
</frame>
<item id="104856" />
wash-tumble-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104857" />
</frame>
<item id="104857" />
wash
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104828" />
</frame>
<item id="104828" />
waterpolo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104858" />
</frame>
<item id="104858" />
wave-saw-tool
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104859" />
</frame>
<item id="104859" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 4861-4950 of 4964 SVG files.
Back to section index
wave-sine
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104860" />
</frame>
<item id="104860" />
wave-square
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104861" />
</frame>
<item id="104861" />
waves-electricity
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104862" />
</frame>
<item id="104862" />
webhook-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104864" />
</frame>
<item id="104864" />
webhook
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104863" />
</frame>
<item id="104863" />
weight
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104865" />
</frame>
<item id="104865" />
wheat-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104867" />
</frame>
<item id="104867" />
wheat
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104866" />
</frame>
<item id="104866" />
wheel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104868" />
</frame>
<item id="104868" />
wheelchair-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104870" />
</frame>
<item id="104870" />
wheelchair
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104869" />
</frame>
<item id="104869" />
whirl
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104871" />
</frame>
<item id="104871" />
wifi-0
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104873" />
</frame>
<item id="104873" />
wifi-1
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104874" />
</frame>
<item id="104874" />
wifi-2
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104875" />
</frame>
<item id="104875" />
wifi-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104876" />
</frame>
<item id="104876" />
wifi
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104872" />
</frame>
<item id="104872" />
wind-electricity
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104878" />
</frame>
<item id="104878" />
wind-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104879" />
</frame>
<item id="104879" />
wind
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104877" />
</frame>
<item id="104877" />
windmill-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104881" />
</frame>
<item id="104881" />
windmill
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104880" />
</frame>
<item id="104880" />
window-maximize
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104883" />
</frame>
<item id="104883" />
window-minimize
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104884" />
</frame>
<item id="104884" />
window-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104885" />
</frame>
<item id="104885" />
window
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104882" />
</frame>
<item id="104882" />
windsock
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104886" />
</frame>
<item id="104886" />
wiper-wash
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104888" />
</frame>
<item id="104888" />
wiper
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104887" />
</frame>
<item id="104887" />
woman
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104889" />
</frame>
<item id="104889" />
wood
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104890" />
</frame>
<item id="104890" />
world-bolt
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104892" />
</frame>
<item id="104892" />
world-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104893" />
</frame>
<item id="104893" />
world-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104894" />
</frame>
<item id="104894" />
world-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104895" />
</frame>
<item id="104895" />
world-cog
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104896" />
</frame>
<item id="104896" />
world-dollar
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104897" />
</frame>
<item id="104897" />
world-down
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104898" />
</frame>
<item id="104898" />
world-download
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104899" />
</frame>
<item id="104899" />
world-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104900" />
</frame>
<item id="104900" />
world-heart
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104901" />
</frame>
<item id="104901" />
world-latitude
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104902" />
</frame>
<item id="104902" />
world-longitude
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104903" />
</frame>
<item id="104903" />
world-minus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104904" />
</frame>
<item id="104904" />
world-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104905" />
</frame>
<item id="104905" />
world-pause
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104906" />
</frame>
<item id="104906" />
world-pin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104907" />
</frame>
<item id="104907" />
world-plus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104908" />
</frame>
<item id="104908" />
world-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104909" />
</frame>
<item id="104909" />
world-search
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104910" />
</frame>
<item id="104910" />
world-share
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104911" />
</frame>
<item id="104911" />
world-star
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104912" />
</frame>
<item id="104912" />
world-up
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104913" />
</frame>
<item id="104913" />
world-upload
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104914" />
</frame>
<item id="104914" />
world-www
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104915" />
</frame>
<item id="104915" />
world-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104916" />
</frame>
<item id="104916" />
world
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104891" />
</frame>
<item id="104891" />
wrecking-ball
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104917" />
</frame>
<item id="104917" />
writing-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104919" />
</frame>
<item id="104919" />
writing-sign-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104921" />
</frame>
<item id="104921" />
writing-sign
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104920" />
</frame>
<item id="104920" />
writing
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104918" />
</frame>
<item id="104918" />
x-power-y
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104923" />
</frame>
<item id="104923" />
x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104922" />
</frame>
<item id="104922" />
xbox-a
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104924" />
</frame>
<item id="104924" />
xbox-b
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104925" />
</frame>
<item id="104925" />
xbox-x
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104926" />
</frame>
<item id="104926" />
xbox-y
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104927" />
</frame>
<item id="104927" />
xd
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104928" />
</frame>
<item id="104928" />
xxx
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104929" />
</frame>
<item id="104929" />
yin-yang
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104930" />
</frame>
<item id="104930" />
yoga
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104931" />
</frame>
<item id="104931" />
zeppelin-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104933" />
</frame>
<item id="104933" />
zeppelin
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104932" />
</frame>
<item id="104932" />
zip
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104934" />
</frame>
<item id="104934" />
zodiac-aquarius
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104935" />
</frame>
<item id="104935" />
zodiac-aries
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104936" />
</frame>
<item id="104936" />
zodiac-cancer
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104937" />
</frame>
<item id="104937" />
zodiac-capricorn
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104938" />
</frame>
<item id="104938" />
zodiac-gemini
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104939" />
</frame>
<item id="104939" />
zodiac-leo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104940" />
</frame>
<item id="104940" />
zodiac-libra
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104941" />
</frame>
<item id="104941" />
zodiac-pisces
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104942" />
</frame>
<item id="104942" />
zodiac-sagittarius
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104943" />
</frame>
<item id="104943" />
zodiac-scorpio
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104944" />
</frame>
<item id="104944" />
zodiac-taurus
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104945" />
</frame>
<item id="104945" />
zodiac-virgo
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104946" />
</frame>
<item id="104946" />
zoom-cancel
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104948" />
</frame>
<item id="104948" />
zoom-check
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104949" />
</frame>
<item id="104949" />
zoom-code
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104950" />
</frame>
<item id="104950" />
This page references SVG files under etc/resources/aws/svg/Tabler-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 4951-4964 of 4964 SVG files.
Back to section index
zoom-exclamation
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104951" />
</frame>
<item id="104951" />
zoom-in-area
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104953" />
</frame>
<item id="104953" />
zoom-in
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104952" />
</frame>
<item id="104952" />
zoom-money
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104954" />
</frame>
<item id="104954" />
zoom-out-area
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104956" />
</frame>
<item id="104956" />
zoom-out
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104955" />
</frame>
<item id="104955" />
zoom-pan
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104957" />
</frame>
<item id="104957" />
zoom-question
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104958" />
</frame>
<item id="104958" />
zoom-replace
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104959" />
</frame>
<item id="104959" />
zoom-reset
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104960" />
</frame>
<item id="104960" />
zoom-scan
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104961" />
</frame>
<item id="104961" />
zoom
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104947" />
</frame>
<item id="104947" />
zzz-off
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104963" />
</frame>
<item id="104963" />
zzz
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="104962" />
</frame>
<item id="104962" />
This page references SVG files under etc/resources/aws/svg/Yamaha-Network-Icons.
Each card shows the SVG preview first and the XAL tag syntax in the Code tab.
Showing 1-59 of 59 SVG files.
ac_adapter
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200000" />
</frame>
<item id="200000" />
ap
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200002" />
</frame>
<item id="200002" />
ap_general
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200001" />
</frame>
<item id="200001" />
cracker
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200003" />
</frame>
<item id="200003" />
desktop_pc
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200005" />
</frame>
<item id="200005" />
desktop_pc_vpn8
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200004" />
</frame>
<item id="200004" />
dpi
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200006" />
</frame>
<item id="200006" />
firewall_bridge
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200007" />
</frame>
<item id="200007" />
firewall_router
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200008" />
</frame>
<item id="200008" />
handy
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200009" />
</frame>
<item id="200009" />
internet
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200010" />
</frame>
<item id="200010" />
ip_camera
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200011" />
</frame>
<item id="200011" />
ip_phone
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200012" />
</frame>
<item id="200012" />
l2_switch
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200014" />
</frame>
<item id="200014" />
l2_switch_general
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200013" />
</frame>
<item id="200013" />
l3_switch
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200016" />
</frame>
<item id="200016" />
l3_switch_general
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200015" />
</frame>
<item id="200015" />
laptop
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200018" />
</frame>
<item id="200018" />
laptop_vpn8
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200017" />
</frame>
<item id="200017" />
multifunction
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200019" />
</frame>
<item id="200019" />
network_administrator
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200021" />
</frame>
<item id="200021" />
network_administrator_w
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200020" />
</frame>
<item id="200020" />
network_engineer
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200023" />
</frame>
<item id="200023" />
network_engineer_w
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200022" />
</frame>
<item id="200022" />
network_user
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200025" />
</frame>
<item id="200025" />
network_user_w
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200024" />
</frame>
<item id="200024" />
nv_dns
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200026" />
</frame>
<item id="200026" />
officework
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200027" />
</frame>
<item id="200027" />
onu
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200030" />
</frame>
<item id="200030" />
onu_horizontal
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200028" />
</frame>
<item id="200028" />
onu_small
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200029" />
</frame>
<item id="200029" />
poe
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200032" />
</frame>
<item id="200032" />
poe_injector
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200031" />
</frame>
<item id="200031" />
pos_register
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200033" />
</frame>
<item id="200033" />
router_01
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200034" />
</frame>
<item id="200034" />
router_02
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200035" />
</frame>
<item id="200035" />
router_general
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200036" />
</frame>
<item id="200036" />
server
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200041" />
</frame>
<item id="200041" />
server_db
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200037" />
</frame>
<item id="200037" />
server_file
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200038" />
</frame>
<item id="200038" />
server_radius
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200039" />
</frame>
<item id="200039" />
server_yno
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200040" />
</frame>
<item id="200040" />
sim_card
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200045" />
</frame>
<item id="200045" />
sim_card_micro
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200042" />
</frame>
<item id="200042" />
sim_card_mini
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200043" />
</frame>
<item id="200043" />
sim_card_nano
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200044" />
</frame>
<item id="200044" />
smartphone
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200046" />
</frame>
<item id="200046" />
tablet
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200047" />
</frame>
<item id="200047" />
telework
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200048" />
</frame>
<item id="200048" />
utm_bridge
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200049" />
</frame>
<item id="200049" />
utm_router
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200050" />
</frame>
<item id="200050" />
virtual_router
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200051" />
</frame>
<item id="200051" />
virtual_server
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200055" />
</frame>
<item id="200055" />
virtual_server_db
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200052" />
</frame>
<item id="200052" />
virtual_server_file
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200053" />
</frame>
<item id="200053" />
virtual_server_radius
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200054" />
</frame>
<item id="200054" />
vpc
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200056" />
</frame>
<item id="200056" />
vrx
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200057" />
</frame>
<item id="200057" />
yno
Preview
Code
<frame width="220" height="160" margin="24" item-size="64">
<item id="200058" />
</frame>
<item id="200058" />
Arrows are created with <connection> tags.
Preview
Code
<frame width="360" height="160" margin="24" layout="horizontal" gap="120" align="middle-center">
<rectangle id="web" title="web" width="80" height="48" />
<rectangle id="app" title="app" width="80" height="48" />
<connection src="web" dst="app" />
</frame>
Preview
Code
<frame width="360" height="160" margin="24" layout="horizontal" gap="120" align="middle-center">
<rectangle id="web" title="web" width="80" height="48" />
<rectangle id="app" title="app" width="80" height="48" />
<connection src="web" dst="app" kind="route" />
</frame>
Preview
Code
<frame width="360" height="160" margin="24" layout="horizontal" gap="120" align="middle-center">
<rectangle id="web" title="web" width="80" height="48" />
<rectangle id="app" title="app" width="80" height="48" />
<connection src="web" dst="app" kind="route" />
<connection src="web" dst="app"
kind="traffic"
stroke-style="dashed" />
</frame>
Preview
Code
<frame width="360" height="160" margin="24" layout="horizontal" gap="120" align="middle-center">
<rectangle id="web" title="web" width="80" height="48" />
<rectangle id="app" title="app" width="80" height="48" />
<connection src="web" dst="app"
src-anchor="right-3"
dst-anchor="left-3" />
</frame>
Preview
Code
<frame width="360" height="200" margin="24" layout="horizontal" gap="120" align="middle-center">
<rectangle id="web" title="web" width="80" height="48" />
<rectangle id="db" title="db" width="80" height="48" />
<connection src="web" dst="db" grid="8">
<bend x="180" y="64" />
<bend x="180" y="136" />
</connection>
</frame>
Attribute Values Default
kindroute, traffic, or omittednormal connection
colorCSS hex color depends on kind
stroke-width, widthpositive number 1
stroke-stylesolid, dashed, dottedsolid
start-arrowhead, end-arrowheadnone, arrow, triangle, stealth, diamond, ovaldepends on kind
arrowheadsame as end-arrowhead alias
src-side, dst-sidetop, right, bottom, leftautomatic
src-anchor, dst-anchorside-1 through side-5automatic
bends, points, viainline coordinate list none
gridpositive number router default
scale, coordinate-scalepositive number 1
Frames and borders define visible containers, AWS group boundaries, generic
boxes, rectangles, and ports.
Preview
Code
<frame width="360" height="220" margin="24">
<container layout="horizontal" gap="16">
<card title="Web" />
<card title="App" />
<card title="Data" />
</container>
</frame>
Preview
Code
<frame width="240" height="160" margin="24">
<card title="Dashboard" />
</frame>
Preview
Code
<frame width="215" height="160" margin="24">
<aws-cloud id="aws" title="AWS Cloud" />
</frame>
Preview
Code
<frame width="215" height="160" margin="24">
<aws-cloud-alt id="aws-alt" title="AWS Cloud" />
</frame>
Preview
Code
<frame width="234" height="160" margin="24">
<aws-account id="account" title="AWS Account" />
</frame>
Preview
Code
<frame width="263" height="160" margin="24">
<region id="apne1" title="ap-northeast-1" />
</frame>
Preview
Code
<frame width="236" height="160" margin="24">
<availability-zone id="az-a" title="ap-northeast-1a" />
</frame>
Preview
Code
<frame width="263" height="160" margin="24">
<vpc id="prod-vpc" title="Production VPC" />
</frame>
Preview
Code
<frame width="253" height="160" margin="24">
<public-subnet id="public" title="Public Subnet" />
</frame>
Preview
Code
<frame width="263" height="160" margin="24">
<private-subnet id="private" title="Private Subnet" />
</frame>
Preview
Code
<frame width="227" height="160" margin="24">
<security-group id="sg-web" title="Security Group" />
</frame>
Preview
Code
<frame width="301" height="160" margin="24">
<auto-scaling-group id="asg" title="Auto Scaling group" />
</frame>
Preview
Code
<frame width="330" height="160" margin="24">
<ec2-instance-contents id="ec2-box" title="EC2 instance contents" />
</frame>
Preview
Code
<frame width="272" height="160" margin="24">
<server-contents id="server-box" title="Server contents" />
</frame>
Preview
Code
<frame width="330" height="160" margin="24">
<corporate-data-center id="dc" title="Corporate data center" />
</frame>
Preview
Code
<frame width="224" height="160" margin="24">
<spot-fleet id="spot" title="Spot Fleet" />
</frame>
Preview
Code
<frame width="330" height="160" margin="24">
<aws-iot-greengrass-deployment id="greengrass-deploy" title="Greengrass Deployment" />
</frame>
Preview
Code
<frame width="265" height="160" margin="24">
<aws-iot-greengrass id="greengrass" title="AWS IoT Greengrass" />
</frame>
Preview
Code
<frame width="256" height="160" margin="24">
<elastic-beanstalk-container id="beanstalk" title="Elastic Beanstalk" />
</frame>
Preview
Code
<frame width="204" height="160" margin="24">
<aws-step-functions-workflow id="workflow" title="Workflow" />
</frame>
Preview
Code
<frame width="244" height="160" margin="24">
<generic-group id="custom" title="Custom Group" icon-id="1178" />
</frame>
Preview
Code
<frame width="300" height="180" margin="32">
<rectangle id="service" title="Service" width="180" height="100">
<port id="service-in" side="left" title="in" />
<port id="service-out" side="right" title="out" />
</rectangle>
</frame>
Preview
Code
<frame width="260" height="160" margin="32">
<panel title="No Border" border="none" />
</frame>
Target Attribute Description
root <frame> width, heightCanvas size in layout pixels
root <frame> margin, margin-*Inset diagram content without shrinking the paper frame
generic leaf box border="none"Hide the visible border
generic leaf box visible="false"Hide component while preserving layout space
generic leaf box, rectangle, port font-sizeLabel font size
rectangle, port idRequired unique connection reference
port sidetop, right, bottom, or left
Tag Border color Stroke Width Icon
<aws-cloud>#000000solid 2AWS-Cloud-logo_32.svg
<aws-cloud-alt>#000000solid 2AWS-Cloud_32.svg
<region>#00A1C9dashed 2Region_32.svg
<availability-zone>#00A1C9dashed 2none
<security-group>#CC0000dashed 2none
<auto-scaling-group>#E7601Bsolid 2Auto-Scaling-group_32.svg
<vpc>#8C4FFFsolid 2Virtual-private-cloud-VPC_32.svg
<private-subnet>#00A1C9solid 2Private-subnet_32.svg
<public-subnet>#3F8624solid 2Public-subnet_32.svg
<server-contents>#7A7C7Fsolid 2Server-contents_32.svg
<corporate-data-center>#7A7C7Fsolid 2Corporate-data-center_32.svg
<ec2-instance-contents>#E7601Bsolid 2EC2-instance-contents_32.svg
<spot-fleet>#E7601Bsolid 2Spot-Fleet_32.svg
<aws-account>#E7008Asolid 2AWS-Account_32.svg
<aws-iot-greengrass-deployment>#3F8624solid 2AWS-IoT-Greengrass-Deployment_32.svg
<aws-iot-greengrass>#3F8624solid 2none
<elastic-beanstalk-container>#E7601Bsolid 2none
<aws-step-functions-workflow>#E7008Asolid 2none
<generic-group>#AAB7B8dashed 1configured by icon-id
Use serve for a browser-based SVG preview with automatic reload:
xaligo serve examples/junctions.xal --mode network
Open:
http://127.0.0.1:8080
Endpoints:
Endpoint Purpose
/Browser preview page
/diagram.svgCurrent SVG or HTTP 422 with diagnostics
/api/statusJSON version, render error, and diagnostics
/eventsServer-Sent Events for editor integrations
/healthzHealth check
Parse and layout errors are shown in the preview without stopping the watcher.
External consumers should use the CLI, the preview protocol, or the
TypeScript/WASM package. In-repository adapters use internal/usecase for the
same parse, layout, render, and validation pipeline.
Available render paths include:
Render
RenderExcalidraw
RenderSVG
RenderPPTX
RenderXYFlow
RenderIsoflow
Validate
Diagnose
Editor integrations should prefer diagnostics from the validation API because
they include source-positioned line and column information.
Native runs can customize resource paths and defaults with
etc/resources/aws/app.yaml. All values are optional.
paths:
asset_package: etc/resources/aws/svg
service_catalog_csv: etc/resources/aws/service-catalog.csv
output_frames: output/aws-frames
pptx_exporter_wasm: external/wasm/xaligo.wasm
legend:
offset_x: 120
offset_y: 0
icon_size: 32
font_size: 12
item:
icon_size: 48
Native configuration remains the default when no explicit asset source is
provided. Embedded and WASM environments provide assets through their adapter
instead of forking the render pipeline.
xaligo welcomes contributors, sponsors, bug reports, examples, documentation
improvements, and real-world diagram feedback.
There are no formal contribution rules. The basic flow is :)
Open an issue.
Assign yourself to the issue.
Send a pull request with the change.
Small fixes are valuable. A corrected example, a clearer error message, a
better route around overlapping labels, or a missing documentation note can be
more useful than a large rewrite.
Good contribution areas include:
.xal examples for real architecture patterns.
Rendering bugs in Excalidraw, SVG, PPTX, XYFlow, or Isoflow output.
Connector routing improvements.
AWS, Tabler, or Yamaha catalog corrections.
Documentation improvements.
Diagnostics and validation messages.
Tests that capture confusing edge cases.
Packaging, CI, and release workflow improvements.
When reporting rendering issues, include:
The smallest .xal file that reproduces the problem.
The command you ran.
The output format.
A screenshot or generated artifact when it helps.
What you expected and what actually happened.
Before opening a pull request:
go test ./...
git diff --check
cargo install mdbook-tabs --version 0.2.3 --locked
mdbook build docs
For documentation-only changes, mdbook build docs and git diff --check are
usually enough.
Keep changes focused. Prefer a small fix with a regression test over a broad
refactor. When changing output behavior, update the relevant docs and examples
so future users can find the new behavior.
Sponsorship starts at 1 USD per unit. It helps motivate ongoing development.
Sponsor logos, icons, and names can be listed in this documentation.
Donations are used to maintain the development environment, help cover
community operation costs, and support developer living expenses.
If the donor's identity is clear, in-kind gifts are also welcome 🎁. Please
contact us by X or email before sending anything.
Following Xaligo on X and starring the GitHub repository are also encouraging ⭐.
Please consider following and starring the project. (^^)
Donate via PayPal: Support from 1 USD
X: @XaligoOrg
Email: xaligo@outlook.com.
xaligo itself is MIT licensed, so the project is intentionally easy to use,
modify, redistribute, and build on.
Some bundled icons and generated assets have their own attribution or license
requirements. Preserve the bundled license and attribution files when changing
assets or packaging.
The canonical implementation pipeline is:
.xal source
-> internal/usecase parser
-> internal/usecase layout
-> shared scene and plan calculations
-> repository encoder
Important package boundaries:
Path Responsibility
internal/usecaseParser, layout, validation, scene, routing, and plans
internal/entityShared structures exchanged between layers
internal/repositoryFilesystem and output-format adapters
cmdCLI entry points
externalTypeScript/WASM package and PPTX adapter
Verification commands:
go test ./...
go build ./...
git diff --check
PPTX exporter builds:
make build-wasm
npm run build --workspace=@ryo/xaligo-external
Generated binaries, node_modules, output, mdBook build output, WASM
artifacts, and TypeScript dist output should not be committed.
GitHub Pages is published by .github/workflows/pages.yml when documentation
changes are merged to main. The workflow builds docs/ with mdBook and
deploys docs/book through GitHub Actions Pages.