Skip to content

Instantly share code, notes, and snippets.

@sivarmn
sivarmn / FluentSelect.tsx
Last active July 9, 2021 06:53
React Select Themed as Fluent UI
import React from "react";
import Select from "react-select";
import { FontIcon } from "office-ui-fabric-react/lib/Icon";
import { Stack, Label } from "@fluentui/react";
const options = [
{ value: "chocolate", label: "Chocolate" },
{ value: "strawberry", label: "Strawberry" },
{ value: "vanilla", label: "Vanilla" },
];