svgアイコンの大きさを変えたいです。
svgタグにwidth、heightをつけたのですがアイコンの大きさが変わりません。
デベロッパーツールで確認したところsvgの大きさは変わっていたのですが中のpathの大きさが変わっていないことが原因でした。
pathの大きさを変更するには何を使ったらいいのでしょうか?
<motion.svg style={{ position: 'relative', width: '30px', height: '30px' }} > <motion.path d=""// 省略 fill="transparent" strokeWidth="3" stroke="#ffffff" strokeLinecap="round" strokeLinejoin="round" style={{ position: 'absolute', top: 0 }} /> </motion.svg>