Strongtie Design System
Getting StartedComponents

Command Palette

Search for a command to run...

Getting Started
  • Introduction
  • Setup Guide
  • Package Installation
  • Code Quality Setup
  • Migration Guide
  • Resources
Registry
  • Getting Started
  • Combobox
  • Datepicker
  • MultiSelect
  • Tree
Guides
  • Framework Recommendations
Foundations
  • States
  • Variables
Components
  • Accordion
  • Alert
  • Alert Dialog
  • Avatar
  • Badge
  • Breadcrumb
  • Button
  • Button Group
  • Calendar
  • Card
  • Carousel
  • Chart
  • Checkbox
  • Collapsible
  • Command
  • Combobox
  • Context Menu
  • Date Picker
  • Dialog
  • Drawer
  • Dropdown Menu
  • Empty
  • Field
  • Hover Card
  • Input
  • Input Group
  • Item
  • Kbd
  • Label
  • Menubar
  • Multi Select
  • Navigation Menu
  • Pagination
  • Popover
  • Progress
  • Radio Group
  • Scroll Area
  • Select
  • Separator
  • Sheet
  • Sidebar
  • Skeleton
  • Slider
  • Switch
  • Table
  • Tabs
  • Textarea
  • Toaster
  • Toggle
  • Toggle Group
  • Tooltip
  • Tree
2026 Simpson Strong-Tie
  1. Docs
  2. Resources & Downloads

Resources & Downloads

PreviousNext

Access CDN links, downloadable fonts, and version history for the Strongtie Design System.

Quick access to CDN links, downloadable assets, and version history for integrating the Strongtie Design System.

Getting Started? Visit our Getting Started guide to choose the right integration approach for your project (shadcn/ui recommended for React, CSS for other frameworks).


Quick Reference

shadcn/ui Preset

Recommended for new React projects. Copy-paste components with Strongtie design standards.

CDN Links

CSS files for non-React projects. Blazor, Vue, Angular, vanilla HTML.

NPM Packages

Package installation for React components or CSS-only usage.


shadcn/ui Preset URL

For new React projects, use our preset with the shadcn CLI:

Full setup guide →


CDN Links

Strongtie Design Standards (Modular CSS)

Use our CDN for quick integration without npm. Best for Blazor, Vue, Angular, and vanilla HTML projects.

<!-- Complete styles (~50-80 KB) -->
<link rel="stylesheet" href="https://cdn.strongtie.io/styles/latest/all.css" />

Individual Modules:

<!-- Design standards as CSS variables (~3-5 KB) -->
<link
  rel="stylesheet"
  href="https://cdn.strongtie.io/styles/latest/tokens.css"
/>
 
<!-- CSS reset (~5-8 KB) -->
<link
  rel="stylesheet"
  href="https://cdn.strongtie.io/styles/latest/reset.css"
/>
 
<!-- Font definitions (~2-4 KB) -->
<link
  rel="stylesheet"
  href="https://cdn.strongtie.io/styles/latest/fonts.css"
/>
 
<!-- Component styles (~25-35 KB) -->
<link
  rel="stylesheet"
  href="https://cdn.strongtie.io/styles/latest/components.css"
/>

Version pinning: For production, replace latest with a specific version (e.g., v1.2.3) to prevent unexpected changes.

Full CSS integration guide →

Telerik UI Kit (Legacy)

For legacy applications only. New projects should use shadcn/ui or Strongtie design standards. Learn why →

<!-- Telerik UI Kit (latest) -->
<link
  rel="stylesheet"
  href="https://cdn.strongtie.io/ui-kit/latest/ui-kit.css"
/>
 
<!-- Telerik UI Kit 2.2.2 (legacy) -->
<link
  rel="stylesheet"
  href="https://cdn.strongtie.io/ui-kit/2.2.2/ui-kit.css"
/>

NPM Packages

@strongtie/design-system

Pre-built React components package. Good for quick migrations or internal tools.

npm install @strongtie/design-system
import "@strongtie/design-system/styles"
 
import { Button } from "@strongtie/design-system/button"

Requires Azure Artifacts authentication (Simpson feed). Installation guide →

@strongtie/styles

CSS-only package with Strongtie design standards.

npm install @strongtie/styles
import "@strongtie/styles/all.css"
/* Or in CSS */
@import "@strongtie/styles/tokens";

Requires Azure Artifacts authentication (Simpson feed). CSS-only guide →


Downloadable Assets

Typography

Helvetica Now (Variable)
Recommended for web projects. Variable font files (WOFF2) for optimal performance and flexibility.

Download WOFF2

Helvetica Now (OTF)
Desktop font files for design tools like Figma, Sketch, and Adobe Creative Suite.

Download OTF


Version History

Strongtie Design Standards

Current stable release for CSS-only usage and design standards.

<link
  rel="stylesheet"
  href="https://cdn.strongtie.io/styles/latest/all.css"
/>

Latest stable version, automatically updated with each release.

Telerik UI Kit Versions (Legacy)

Legacy versions for existing applications only. Not recommended for new projects.

v2.5.4 (Latest)

View

Download

v2.5.3

View

Download

v2.5.2

View

Download

v2.5.1

View

Download

v2.5.0

View

Download


Quick Integration Examples

CDN (Non-React)

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>My App</title>
 
    <!-- Strongtie Design Standards -->
    <link
      rel="stylesheet"
      href="https://cdn.strongtie.io/styles/latest/all.css"
    />
  </head>
  <body>
    <h1>Hello World</h1>
  </body>
</html>

NPM (React)

// Import styles
import "@strongtie/design-system/styles"
 
// Import components
import { Button } from "@strongtie/design-system/button"
 
function App() {
  return <Button>Click me</Button>
}

NPM (CSS Only)

// Import all styles
import "@strongtie/styles/all.css"
// Or import specific modules
import "@strongtie/styles/tokens.css"
import "@strongtie/styles/fonts.css"

Need Help?

  • New React project: Getting Started with shadcn/ui →
  • Non-React project: CSS-only Integration Guide →
  • React package setup: Installation Guide →
  • Migrating from @studs/react: Migration Guide →
  • Telerik UI Kit users: CDN Migration Guide →

External Resources

  • shadcn/ui - Official shadcn/ui documentation
  • Radix UI - Accessible component primitives
  • Tailwind CSS - Utility-first CSS framework
  • GitHub Repository - Source code, issues, and releases
Migration GuideAI Agent Skills

On This Page

Quick Referenceshadcn/ui Preset URLCDN LinksStrongtie Design Standards (Modular CSS)Telerik UI Kit (Legacy)NPM Packages@strongtie/design-system@strongtie/stylesDownloadable AssetsTypographyVersion HistoryStrongtie Design StandardsTelerik UI Kit Versions (Legacy)Quick Integration ExamplesCDN (Non-React)NPM (React)NPM (CSS Only)Need Help?External Resources

Contribute

  • Report an issue
  • Request a feature
  • Edit this page