We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35108c5 commit cc54ddfCopy full SHA for cc54ddf
src/icons/helpers/make-icon.js
@@ -73,7 +73,7 @@ const BVIconBase = {
73
// and we want flipping to occur before rotation, and
74
// shifting is applied last
75
const transforms = [
76
- shiftH ? `translateX(${(-100 * shiftH) / 16}%)` : null,
+ shiftH ? `translateX(${(100 * shiftH) / 16}%)` : null,
77
shiftV ? `translateY(${(-100 * shiftV) / 16}%)` : null,
78
rotate ? `rotate(${rotate}deg)` : null,
79
flipH || flipV || scale !== 1
0 commit comments