import { SvgIcon, allureIcons } from "@allurereport/web-components"; import { clsx } from "clsx"; import type { FunctionalComponent } from "preact"; import * as styles from "./styles.scss"; export interface ArrowButtonProps { isOpened?: boolean; iconSize?: "m" | "xs" | "s"; buttonSize?: "m" | "xs" | "s"; className?: string; icon?: string; } export const ArrowButton: FunctionalComponent = ({ isOpened, buttonSize = "m", iconSize = "xs", className, icon = allureIcons.lineArrowsChevronDown, ...rest }) => { return ( ); };