import { Component } from "solid-js"; export const ButtonApply: Component<{ onClick: () => void; isEnabled?: () => boolean }> = (props) => { return ( ); };