import { hash } from "@ember/helper";
import DButton from "discourse/components/d-button";
export const AdminPageActionButton =
;
// This is used for cases where there is another component,
// e.g. UppyBackupUploader, that is a button which cannot use
// PrimaryButton and so on directly. This should be used very rarely,
// most cases are covered by the other button types.
export const WrappedButton =
{{yield}}
;
// No buttons here pass in an @icon by design. They are okay to
// use on dropdown list items, but our UI guidelines do not allow them
// on regular buttons.
export const PrimaryButton =
;
export const DangerButton =
;
export const DefaultButton =
;
export const AdminPageActionListItem =
;
// This is used for cases where there is another component,
// e.g. UppyBackupUploader, that is a button which cannot use
// PrimaryActionListItem and so on directly. This should be used very rarely,
// most cases are covered by the other list types.
export const WrappedActionListItem =
;
// It is not a mistake that `btn-default` is used here, in a list
// there is no need for blue text.
export const PrimaryActionListItem =
;
export const DefaultActionListItem =
;
export const DangerActionListItem =
;