
Enter a search term above to see results...
Enter a search term above to see results...
Semantic UI components are web components so they can be used directly in many front end frameworks directly.
Direct Usage For smaller projects you may consider using UI components directly in app layouts. This is the simplest set up and means you can work one to one with the Semantic UI docs when working on your site.
Custom Framework For larger projects you may consider wrapping UI components into a design framework. This would mean using the web components as primitives to build additional framework specific integrations for your project. This may include business logic or other project specific requirements that may not be addressed directly in a generalized UI framework.
If you want to use Semantic UI directly in your page without wrapping the components into a custom design framework, you can simply import each component.
Components emit standard DOM events which you can bind event handlers.
In React, you can use web components directly since version 19.
import React from 'react';import '@semantic-ui/core/components/button';import '@semantic-ui/core/components/icon';import '@semantic-ui/core/themes/button.css';import '@semantic-ui/core/themes/icon.css';
function MyComponent() { return ( <div> <ui-button primary>Click me</ui-button> <ui-icon icon="close"></ui-icon> </div> );}
In Angular, you can use web components directly in your templates. Import the necessary components and use them with the appropriate property and event bindings.
import { Component } from '@angular/core';import '@semantic-ui/core/components/button';import '@semantic-ui/core/components/icon';import '@semantic-ui/core/themes/button.css';import '@semantic-ui/core/themes/icon.css';
@Component({ selector: 'app-root', templateUrl: './app.component.html',})export class AppComponent { handleChange() { // Handle change event }}
<ui-button [primary]="true" (change)="handleChange()">Click me</ui-button><ui-icon icon="close"></ui-icon>
In Vue, you can use web components directly in your templates. Import the necessary components and use them with the appropriate property and event bindings.
<template> <div> <ui-button :primary="true" @change="handleChange">Click me</ui-button> <ui-icon icon="close"></ui-icon> </div></template>
<script setup>import '@semantic-ui/core/components/button';import '@semantic-ui/core/components/icon';import '@semantic-ui/core/themes/button.css';import '@semantic-ui/core/themes/icon.css';
function handleChange() { // Handle change event}</script>
In Svelte, you can use web components directly in your templates. Import the necessary components and use them with the appropriate property and event bindings.
<script> import '@semantic-ui/core/components/button'; import '@semantic-ui/core/components/icon'; import '@semantic-ui/core/themes/button.css'; import '@semantic-ui/core/themes/icon.css';
function handleChange() { // Handle change event }</script>
<ui-button primary on:change={handleChange}>Click me</ui-button><ui-icon icon="close"></ui-icon>
In Lit, since the underlying web components are built using Lit, you can directly extend and customize the components in your own Lit components.
import { LitElement, html } from 'lit';import { UIButton } from '@semantic-ui/core/components/button';import { UIIcon } from '@semantic-ui/core/components/icon';import '@semantic-ui/core/themes/button.css';import '@semantic-ui/core/themes/icon.css';
class MyButton extends UIButton { // Customize the button component}
class MyIcon extends UIIcon { // Customize the icon component}
class MyComponent extends LitElement { render() { return html` <my-button primary @change="\${this.handleChange}">Click me</my-button> <my-icon icon="close"></my-icon> `; }
handleChange() { // Handle change event }}
It may often make sense to wrap web components in native wrappers for your framework so that you can simplify passing data and events.
You may also use this to set defaults for your components, or to add additional logic or settings.
React 19 introduced native support for web components, you can directly use the web components without the need for a wrapper component.
import React from 'react';import '@semantic-ui/core/components/button';import '@semantic-ui/core/components/icon';import '@semantic-ui/core/themes/button.css';import '@semantic-ui/core/themes/icon.css';
export const UIButton = React.forwardRef((props, ref) => <ui-button ref={ref} {...props} />);export const UIIcon = React.forwardRef((props, ref) => <ui-icon ref={ref} {...props} />);
In React, you can create a generic wrapper component that handles passing properties and event bindings to the underlying web component. This approach is useful if you have multiple web components to wrap.
import React from 'react';import '@semantic-ui/core/components/button';import '@semantic-ui/core/components/icon';import '@semantic-ui/core/themes/button.css';import '@semantic-ui/core/themes/icon.css';
const WebComponentWrapper = React.forwardRef(({ component, ...props }, ref) => { const Component = component;
const handleEvent = (event) => { const eventName = event.type; const eventHandler = props[eventName]; if (eventHandler) { eventHandler(event.detail); } };
return <Component ref={ref} {...props} onEvent={handleEvent} />;});
export const UIButton = (props) => <WebComponentWrapper component="ui-button" {...props} />;export const UIIcon = (props) => <WebComponentWrapper component="ui-icon" {...props} />;
In Angular, you can create individual wrapper components for each web component you want to include in your design framework.
import { Component, Input, Output, EventEmitter, ElementRef } from '@angular/core';import '@semantic-ui/core/components/button';import '@semantic-ui/core/themes/button.css';
@Component({ selector: 'ui-button', template: '<ui-button [properties]="properties"></ui-button>',})export class UIButtonComponent { @Input() properties: any; @Output() event = new EventEmitter<any>();
constructor(private elementRef: ElementRef) {}
ngAfterViewInit() { const button = this.elementRef.nativeElement.querySelector('ui-button'); button.addEventListener('event', (event: CustomEvent) => { this.event.emit({ type: event.type, detail: event.detail }); }); }}
import { Component, Input, Output, EventEmitter, ElementRef } from '@angular/core';import '@semantic-ui/core/components/icon';import '@semantic-ui/core/themes/icon.css';
@Component({ selector: 'ui-icon', template: '<ui-icon [properties]="properties"></ui-icon>',})export class UIIconComponent { @Input() properties: any; @Output() event = new EventEmitter<any>();
constructor(private elementRef: ElementRef) {}
ngAfterViewInit() { const icon = this.elementRef.nativeElement.querySelector('ui-icon'); icon.addEventListener('event', (event: CustomEvent) => { this.event.emit({ type: event.type, detail: event.detail }); }); }}
In Vue, you can create individual wrapper components for each web component you want to include in your design framework.
<template> <ui-button v-bind="$attrs" v-on="$listeners"> <slot></slot> </ui-button></template>
<script setup>import '@semantic-ui/core/components/button';import '@semantic-ui/core/themes/button.css';</script>
<template> <ui-icon v-bind="$attrs" v-on="$listeners"> <slot></slot> </ui-icon></template>
<script setup>import '@semantic-ui/core/components/icon';import '@semantic-ui/core/themes/icon.css';</script>
In Svelte, you can create individual wrapper components for each web component you want to include in your design framework.
<script> import '@semantic-ui/core/components/button'; import '@semantic-ui/core/themes/button.css';
export let properties = {};</script>
<ui-button {...properties} on:event> <slot></slot></ui-button>
<script> import '@semantic-ui/core/components/icon'; import '@semantic-ui/core/themes/icon.css';
export let properties = {};</script>
<ui-icon {...properties} on:event> <slot></slot></ui-icon>
In Lit, since the web components are already built using Lit, you can directly extend and customize the components in your own Lit components. There’s no need for a separate wrapper component.
import { LitElement, html } from 'lit';import { UIButton } from '@semantic-ui/core/components/button';import { UIIcon } from '@semantic-ui/core/components/icon';import '@semantic-ui/core/themes/button.css';import '@semantic-ui/core/themes/icon.css';
export class MyButton extends UIButton { // Customize the button component}
export class MyIcon extends UIIcon { // Customize the icon component}
By creating wrapper components or directly using the web components in your design framework, you can provide a consistent and framework-specific way for consumers to use the Semantic UI Web Components in their applications.
Remember to import the necessary CSS files for each component you use, as shown in the examples above.
When deciding whether to create wrapper components or use the web components directly, consider the following:
Ultimately, the approach you choose depends on your specific requirements and the conventions of your framework and design system.