import clsx from 'clsx' import { type HTMLProps } from 'react' type Properties = HTMLProps & { readonly isDestructive?: boolean; readonly isDisabled?: boolean; } export default function Action(properties: Properties) { return ( {properties.children} ) }