import { ElementFloatPosition, ElementSize } from "."; /** Icon for component */ export type ElementIcon = { /** * Icon name. Must be without `bi-` * @see https://icons.getbootstrap.com/ * @example * // Will render icon "Info square fill" * // https://icons.getbootstrap.com/icons/info-square-fill/ */ name: string; /** Additional classname */ className?: string; /** Icon size */ size?: ElementSize; /** * Position * Works only with other content */ position?: ElementFloatPosition; }; //# sourceMappingURL=elementIcon.d.ts.map