mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-13 20:10:07 +02:00
Add visualizer configuration (#1443)
* add visualizer configuration * add visualizer presets * add butterchurn visualizer * wrap visualizers in error boundary
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import {
|
||||
AngleSlider as MantineAngleSlider,
|
||||
AngleSliderProps as MantineAngleSliderProps,
|
||||
} from '@mantine/core';
|
||||
import { forwardRef } from 'react';
|
||||
|
||||
export interface AngleSliderProps extends MantineAngleSliderProps {}
|
||||
|
||||
export const AngleSlider = forwardRef<HTMLDivElement, AngleSliderProps>((props, ref) => {
|
||||
return <MantineAngleSlider {...props} ref={ref} />;
|
||||
});
|
||||
|
||||
AngleSlider.displayName = 'AngleSlider';
|
||||
Reference in New Issue
Block a user