feather-icons-paths
Version:
Feather icons exported as paths
14 lines (13 loc) • 729 B
TypeScript
export default feSquare;
export type PathifiedSvgContent = string;
export type FeatherIconsPathDefinition = string;
export type FeatherSquareIconData = {
prefix: 'fe';
iconName: 'feSquare';
icon: [number | string, number | string, import('feather-icons').FeatherAttributes, PathifiedSvgContent, FeatherIconsPathDefinition];
};
/** @typedef {String} PathifiedSvgContent */
/** @typedef {String} FeatherIconsPathDefinition */
/** @typedef {{ prefix: 'fe', iconName: 'feSquare', icon: [Number|String, Number|String, import('feather-icons').FeatherAttributes, PathifiedSvgContent, FeatherIconsPathDefinition] }} FeatherSquareIconData */
/** @type {FeatherSquareIconData} */
declare const feSquare: FeatherSquareIconData;