Some polish

This commit is contained in:
nickofolas
2022-04-17 15:08:58 -05:00
parent da18115b80
commit f222dc5277
3 changed files with 7 additions and 2 deletions
+2
View File
@@ -9,6 +9,7 @@ interface IProps {
max: number;
tooltip: React.ReactElement;
label: string;
marks?: boolean;
}
export const OptionsSlider = (props: IProps): React.ReactElement => {
@@ -30,6 +31,7 @@ export const OptionsSlider = (props: IProps): React.ReactElement => {
width: "12px",
},
}}
marks={props.marks}
/>
</Box>
);