mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 20:40:15 +02:00
forward switch ref
This commit is contained in:
@@ -1,23 +1,27 @@
|
||||
import type { SwitchProps as MantineSwitchProps } from '@mantine/core';
|
||||
|
||||
import { Switch as MantineSwitch } from '@mantine/core';
|
||||
import { forwardRef, Ref } from 'react';
|
||||
|
||||
import styles from './switch.module.css';
|
||||
|
||||
type SwitchProps = MantineSwitchProps;
|
||||
|
||||
export const Switch = ({ classNames, ...props }: SwitchProps) => {
|
||||
return (
|
||||
<MantineSwitch
|
||||
classNames={{
|
||||
input: styles.input,
|
||||
root: styles.root,
|
||||
thumb: styles.thumb,
|
||||
track: styles.track,
|
||||
...classNames,
|
||||
}}
|
||||
withThumbIndicator={false}
|
||||
{...props}
|
||||
/>
|
||||
);
|
||||
};
|
||||
export const Switch = forwardRef(
|
||||
({ classNames, ...props }: SwitchProps, ref: Ref<HTMLInputElement>) => {
|
||||
return (
|
||||
<MantineSwitch
|
||||
classNames={{
|
||||
input: styles.input,
|
||||
root: styles.root,
|
||||
thumb: styles.thumb,
|
||||
track: styles.track,
|
||||
...classNames,
|
||||
}}
|
||||
ref={ref}
|
||||
withThumbIndicator={false}
|
||||
{...props}
|
||||
/>
|
||||
);
|
||||
},
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user