import { execAsync } from 'astal';
import { Gtk } from 'astal/gtk3';
export const Label = ({ title: name, subtitle: sub = '', subtitleLink = '' }: LabelProps): JSX.Element => {
const Subtitle = (): JSX.Element => {
if (subtitleLink.length) {
return (
);
}
return ;
};
return (
);
};
interface LabelProps {
title: string;
subtitle?: string;
subtitleLink?: string;
}