ctrl+k
Enter a search term above to see results...
Install the package
npm install @semantic-ui/corepnpm install @semantic-ui/coreyarn add @semantic-ui/coreImport Global CSS Tokens
import '@semantic-ui/core/css';Import Components
Option 1 - Import the components you would like to use.
import { UIButton } from '@semantic-ui/core';Option 2 - Import the entire framework to access every component.
import '@semantic-ui/core';Use UI Components
<ui-button primary>Click me</ui-button>Import Global CSS Tokens from CDN
<link href="https://cdn.semantic-ui.com/@semantic-ui/core/0.18.0/dist/semantic-ui.css">Import the UI Components from CDN
Option 1 - Import the components you would like to use.
<script src="https://cdn.semantic-ui.com/@semantic-ui/core/0.18.0/dist/cdn/button.js"></script>Option 2 - Import the entire framework to access every component.
<script src="https://cdn.semantic-ui.com/@semantic-ui/core/0.18.0/dist/cdn/semantic-ui.js"></script>Use UI components
<ui-button primary>Click me</ui-button>