File tree Expand file tree Collapse file tree 4 files changed +13
-7
lines changed
webtool/frontend/src/components Expand file tree Collapse file tree 4 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -3,19 +3,22 @@ import {Pilot} from "local4local"
33import { local4localDarkOrange } from "../../colors.ts" ;
44import { Local4LocalButton } from "../Local4LocalButton.tsx" ;
55import { NavLink } from "react-router" ;
6+ import { FaArrowRight } from "react-icons/fa6"
67
78export const LoadExampleCaseButton : FunctionComponent < { exampleCase : Pilot } > = ( { exampleCase} ) => (
89 < Local4LocalButton
910 asChild
1011 style = { {
11- fontSize : "1.5rem " ,
12- height : "2.2rem " ,
12+ fontSize : "1.3rem " ,
13+ height : "2.5rem " ,
1314 aspectRatio : "1 / 1" ,
1415 padding : "0" ,
1516 fontWeight : "bold" ,
1617 backgroundColor : local4localDarkOrange + "80" ,
1718 } }
1819 >
19- < NavLink to = { "/rekentool?pilot=" + encodeURIComponent ( exampleCase . toJson ( ) ) } > ➔</ NavLink >
20+ < NavLink to = { "/rekentool?pilot=" + encodeURIComponent ( exampleCase . toJson ( ) ) } >
21+ < FaArrowRight />
22+ </ NavLink >
2023 </ Local4LocalButton >
21- )
24+ )
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import {NavLink} from "react-router"
33import { Button } from "@radix-ui/themes"
44import { local4localLightGreen } from "../../colors.ts"
55import { Local4LocalButton } from "../Local4LocalButton.tsx"
6+ import { FaArrowRight } from "react-icons/fa6"
67
78export const StartButton : FunctionComponent < ComponentProps < typeof Button > > = ( { style, ...props } ) => (
89 < Local4LocalButton
@@ -21,7 +22,7 @@ export const StartButton: FunctionComponent<ComponentProps<typeof Button>> = ({s
2122 { ...props }
2223 >
2324 < NavLink to = "/rekentool" >
24- Start ➔
25+ Start < FaArrowRight />
2526 </ NavLink >
2627 </ Local4LocalButton >
2728)
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import {ResourcefullyDialogContent} from "./content.tsx"
66import { Local4LocalButton } from "../Local4LocalButton.tsx"
77import { local4localLightGreen } from "../../colors.ts"
88import { PilotState } from "../../services/use-pilot.ts"
9+ import { FaArrowRight } from "react-icons/fa6"
910
1011const Button : FunctionComponent = ( ) => (
1112 < Local4LocalButton
@@ -20,7 +21,7 @@ const Button: FunctionComponent = () => (
2021 zIndex : 99 ,
2122 } }
2223 >
23- Ga naar gevoeligheidsanalyse ➔
24+ Ga naar gevoeligheidsanalyse < FaArrowRight />
2425 </ Local4LocalButton >
2526)
2627
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import {SdeSupplementForm} from "./SdeSupplementForm.tsx"
77import { DialogButtonRow } from "./DialogButtonRow.tsx"
88import { DataSharingButton } from "./DataSharingButton.tsx"
99import { ArrowRightIcon } from "@radix-ui/react-icons"
10+ import { FaArrowRight } from "react-icons/fa6"
1011
1112export type ReactSubmitEvent = SyntheticEvent < HTMLFormElement , SubmitEvent >
1213export type SubmitEventHandeler = EventHandler < ReactSubmitEvent >
@@ -52,7 +53,7 @@ export const ResourcefullyForm: FunctionComponent<{
5253 < Local4LocalButton name = "action" value = "preview" style = { { backgroundColor : local4localLightBlue } } size = "1" > Bericht bekijken</ Local4LocalButton >
5354 < Local4LocalButton name = "action" value = "send" style = { { backgroundColor : local4localDarkOrange } } >
5455 Opsturen
55- < ArrowRightIcon />
56+ < FaArrowRight />
5657 </ Local4LocalButton >
5758 </ DialogButtonRow >
5859 </ form >
You can’t perform that action at this time.
0 commit comments