UNPKG

@yandex/ui

Version:

Yandex UI components

14 lines (11 loc) 364 B
import { renameProps } from './utils/renameProps'; function removeWidthFixed(root, j) { renameProps(root, j, 'url', 'src', 'Image'); renameProps(root, j, 'fallback', 'fallbackSrc', 'Image'); } module.exports = (fileInfo, { jscodeshift: j }) => { const root = j(fileInfo.source); removeWidthFixed(root, j); return root .toSource(); };