// Copyright (C) 2023 The Android Open Source Project // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. import m from 'mithril'; import {classNames} from '../classnames'; import {Icon} from './icon'; import {Popup} from './popup'; interface CommonAttrs { // Always show the button as if the "active" pseudo class were applied, which // makes the button look permanently pressed. // Useful for when the button represents some toggleable state, such as // showing/hiding a popup menu. // Defaults to false. active?: boolean; // Use minimal padding, reducing the overall size of the button by a few px. // Defaults to false. compact?: boolean; // Reduces button decorations. // Defaults to false. minimal?: boolean; // Make the button appear greyed out block any interaction with it. No events // will be fired. // Defaults to false. disabled?: boolean; // Optional right icon. rightIcon?: string; // List of space separated class names forwarded to the icon. className?: string; // Allow clicking this button to close parent popups. // Defaults to false. dismissPopup?: boolean; // Remaining attributes forwarded to the underlying HTML