mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-01 19:39:31 +08:00
19 lines
554 B
Text
19 lines
554 B
Text
import { IconifyIconCustomisations } from './index.js';
|
|
|
|
/**
|
|
* Additional shorthand customisations
|
|
*/
|
|
interface ShorthandIconCustomisations {
|
|
flip?: string;
|
|
align?: string;
|
|
}
|
|
/**
|
|
* Apply "flip" string to icon customisations
|
|
*/
|
|
declare function flipFromString(custom: IconifyIconCustomisations, flip: string): void;
|
|
/**
|
|
* Apply "align" string to icon customisations
|
|
*/
|
|
declare function alignmentFromString(custom: IconifyIconCustomisations, align: string): void;
|
|
|
|
export { ShorthandIconCustomisations, alignmentFromString, flipFromString };
|