replaceCurrentColor
从指定路径加载 SVG 文件并修改所有 fill="currentColor"
为指定颜色。
@movk-repo/shared/utils/colors/replaceCurrentColorWithSVGO
参数
ts
function replaceCurrentColor(path: string, color?: string): Promise<string>
path
SVG 文件的路径。可以是本地路径或网络地址。
- 类型:
string
- 必填:
true
color
需要替换的颜色,作为一个有效的 CSS 颜色值(例如 "#ff0000", "red")。
- 类型:
string
- 必填:
false
示例
ts
import { replaceCurrentColor } from '@movk-repo/shared'
replaceCurrentColor('/path/to/icon.svg', '#ff0000')
.then(newSvg => console.log(newSvg))
.catch(error => console.error(error))