import Link from 'next/link' import { PropsWithChildren } from 'react' import { Button } from 'ui' import { SupportLink } from '@/components/interfaces/Support/SupportLink' import { useIsFeatureEnabled } from '@/hooks/misc/useIsFeatureEnabled' import { useSelectedOrganizationQuery } from '@/hooks/misc/useSelectedOrganization' interface ToggleSpendCapButtonProps { action?: 'disable' | 'enable' type?: 'default' | 'primary' } export const ToggleSpendCapButton = ({ action = 'disable', type = 'default', children, }: PropsWithChildren) => { const { data: organization } = useSelectedOrganizationQuery() const slug = organization?.slug ?? '_' const { billingAll } = useIsFeatureEnabled(['billing:all']) const subject = `Enquiry to ${action} spend cap for organization` const message = `Name: ${organization?.name}\nSlug: ${organization?.slug}` const href = billingAll ? `/org/${slug}/billing?panel=costControl` : '' const linkChildren = children || `${action} spend cap` const link = billingAll ? ( {linkChildren} ) : ( {linkChildren} ) return ( ) }