Getting Started

Welcome to Svelte FluentUI! This guide will help you get up and running with Microsoft's FluentUI components in your Svelte application.

Installation

Install the package using your preferred package manager:

npm install svelte-fluentui
# or
pnpm add svelte-fluentui
# or
yarn add svelte-fluentui
bash

Basic Usage

Import and use FluentUI components in your Svelte application:

<script>
  import { Button, TextField } from 'svelte-fluentui';
</script>

<TextField label="Enter your name" />
<Button>Click me!</Button>
svelte

Next Steps

Explore the component documentation to learn about all available components and their properties.