import { Component } from "solid-js"; export const ButtonDownload: Component<{ title: string; onClick: () => void }> = (props) => { return ( ); };