Initial commit

This commit is contained in:
2025-03-07 19:22:02 +01:00
commit 4a98255d83
55743 changed files with 5280367 additions and 0 deletions
@@ -0,0 +1,16 @@
import * as React from 'react';
import { useSwatchPicker_unstable } from './useSwatchPicker';
import { renderSwatchPicker_unstable } from './renderSwatchPicker';
import { useSwatchPickerStyles_unstable } from './useSwatchPickerStyles.styles';
import { useSwatchPickerContextValues } from '../../contexts/swatchPicker';
import { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts';
/**
* SwatchPicker component - TODO: add more docs
*/ export const SwatchPicker = /*#__PURE__*/ React.forwardRef((props, ref)=>{
const state = useSwatchPicker_unstable(props, ref);
const contextValues = useSwatchPickerContextValues(state);
useSwatchPickerStyles_unstable(state);
useCustomStyleHook_unstable('useSwatchPickerStyles_unstable')(state);
return renderSwatchPicker_unstable(state, contextValues);
});
SwatchPicker.displayName = 'SwatchPicker';