dap-design-system
Version:
Official design system for the DÁP (dap.gov.hu)
32 lines (31 loc) • 1.39 kB
TypeScript
import { PropertyValueMap } from 'lit';
import { DdsElement } from '../../../../internal/dds-hu-element';
/**
* `dap-ds-icon-close-circle-line`
* @summary An icon
* @element dap-ds-icon-close-circle-line
* @title - SystemCloseCircleLine
* @group icon
* @icontype system
*
* @attribute {number} size - (optional) The width and height in pixels
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
*
* @csspart base - The main icon container.
*/
export default class SystemCloseCircleLine extends DdsElement {
static tagName: string;
/** (optional) The width and height in pixels */
size?: number | undefined;
/** (optional) Sets the icon color via the `fill` attribute */
selected?: boolean;
/** (optional) When using the icon standalone, make it meaningful for accessibility */
accessibilityTitle?: string;
/** (optional) If `true` the icon can receive focus */
focusable?: boolean;
static readonly styles: import('lit').CSSResult;
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
render(): import('lit-html').TemplateResult;
}