import { PropertyValueMap } from 'lit'; import { DdsElement } from '../../../../internal/dds-hu-element'; /** * `dap-ds-icon-folder-line` * @summary An icon * @element dap-ds-icon-folder-line * @title - DocumentFolderLine * @group icon * @icontype document * * @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 DocumentFolderLine extends DdsElement { /** (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 | Map): void; render(): import('lit-html').TemplateResult; }