-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Benjamin Perez <benjamin@bexsoft.net>
- Loading branch information
Showing
20 changed files
with
19,562 additions
and
19,224 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import * as React from "react"; | ||
import { SVGProps } from "react"; | ||
declare const AutoModeIcon: ( | ||
props: SVGProps<SVGSVGElement>, | ||
) => React.JSX.Element; | ||
export default AutoModeIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import * as React from "react"; | ||
import { SVGProps } from "react"; | ||
declare const LightModeIcon: ( | ||
props: SVGProps<SVGSVGElement>, | ||
) => React.JSX.Element; | ||
export default LightModeIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import React, { FC } from "react"; | ||
import { SliderProps } from "./Slider.types"; | ||
declare const Slider: FC< | ||
SliderProps & React.InputHTMLAttributes<HTMLInputElement> | ||
>; | ||
export default Slider; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import React from "react"; | ||
import { CSSObject } from "styled-components"; | ||
import { CommonHelpTipPlacement } from "../HelpTip/HelpTip.types"; | ||
export interface SliderProps { | ||
id: string; | ||
label?: string; | ||
noLabelMinWidth?: boolean; | ||
error?: string; | ||
tooltip?: string; | ||
sx?: CSSObject; | ||
helpTip?: React.ReactNode; | ||
helpTipPlacement?: CommonHelpTipPlacement; | ||
displayValue?: boolean; | ||
displayValueFunction?: (value: any) => React.ReactNode; | ||
} | ||
export interface SliderContainerProps { | ||
children?: React.ReactNode; | ||
sx?: CSSObject; | ||
error?: boolean; | ||
className?: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.