如何放大material-ui iconButtons 中的SVG 图标?
How to enlarge the SVG icon in material-ui iconButtons?
有人使用 react.js and the Material UI 库构建网页吗?我应该如何调整图标大小?它是一个 svg 图标。
我刚刚构建了一个 "create new" 组件,它是一张 material 纸,顶部有一个内容添加按钮。这是代码。
import React from 'react';
import Paper from 'material-ui/lib/paper';
import ContentAdd from 'material-ui/lib/svg-icons/content/add';
import IconButton from 'material-ui/lib/icon-button';
const styleForPaper = {
width: '96vw',
height: '20vh',
margin: 20,
textAlign: 'center',
display: 'inline-block',
};
const styleForButton = {
'marginTop': '7vh',
};
const PaperToAddNewWidgets = () => (
<div>
<Paper style={styleForPaper} zDepth={2}>
<IconButton
style={styleForButton}
touch={true}
tooltip="Add New Widget">
<ContentAdd/>
</IconButton>
</Paper>
</div>
);
export default PaperToAddNewWidgets;
它看起来不错(确保您以全尺寸查看它),但图标太小了。然后我打开 chrome 开发工具,看到下面的 html 代码。
<div style="background-color:#ffffff;transition:all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;box-sizing:border-box;font-family:Roboto, sans-serif;-webkit-tap-highlight-color:rgba(0,0,0,0);box-shadow:0 3px 10px rgba(0,0,0,0.16),
0 3px 10px rgba(0,0,0,0.23);border-radius:2px;width:96vw;height:20vh;margin:20px;text-align:center;display:inline-block;mui-prepared:;" data-reactid=".0.2.0.1.0"><button style="border:10px;background:none;box-sizing:border-box;display:inline-block;font:inherit;font-family:Roboto, sans-serif;tap-highlight-color:rgba(0, 0, 0, 0);cursor:pointer;text-decoration:none;outline:none;transform:translate3d(0, 0, 0);position:relative;transition:all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;padding:12px;width:48px;height:48px;font-size:0;margin-top:7vh;mui-prepared:;-webkit-appearance:button;" tabindex="0" type="button" data-reactid=".0.2.0.1.0.0"><div data-reactid=".0.2.0.1.0.0.0"><span style="height:100%;width:100%;position:absolute;top:0;left:0;overflow:hidden;mui-prepared:;" data-reactid=".0.2.0.1.0.0.0.0"></span><div style="position: absolute; font-family: Roboto, sans-serif; font-size: 14px; line-height: 32px; padding: 0px 16px; z-index: 3000; color: rgb(255, 255, 255); overflow: hidden; top: -10000px; border-radius: 2px; opacity: 0; left: -44px; transition: top 0ms cubic-bezier(0.23, 1, 0.32, 1) 450ms, transform 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms, opacity 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; box-sizing: border-box; -webkit-user-select: none;" data-reactid=".0.2.0.1.0.0.0.1:0"><div style="position: absolute; left: 50%; top: 0px; transform: translate(-50%, -50%); border-radius: 50%; transition: width 0ms cubic-bezier(0.23, 1, 0.32, 1) 450ms, height 0ms cubic-bezier(0.23, 1, 0.32, 1) 450ms, backgroundColor 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; width: 0px; height: 0px; background-color: transparent;" data-reactid=".0.2.0.1.0.0.0.1:0.0"></div><span style="position:relative;white-space:nowrap;mui-prepared:;" data-reactid=".0.2.0.1.0.0.0.1:0.1">Add New Widget</span></div><svg style="display:inline-block;height:24px;width:24px;transition:all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;fill:rgba(0, 0, 0, 0.87);mui-prepared:;-webkit-user-select:none;" viewBox="0 0 24 24" data-reactid=".0.2.0.1.0.0.0.1:2:$/=10"><path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" data-reactid=".0.2.0.1.0.0.0.1:2:$/=10.0"></path></svg></div></button></div>
使用chrome 开发工具,我修改了svg 图标大小和svg 的viewbox 属性 并使图标在浏览器中变大。但我不确定如何在我的代码中调整图标大小。如果我写一个 CSS 文件来修改 svg,如果有多个 svg 元素,就会有问题。
svg有两种放大方式,一种是override the style with iconStyle, the other is to edit the code found in https://github.com/callemall/material-ui/blob/master/src/SvgIcon/SvgIcon.js
注意:ContentAdd
从 SvgIcon
导入
const mergedStyles = Object.assign({
..
height: 24, // <-- change default height
width: 24, // <-- change default width
..
}, style);
return (
<svg
{...other}
..
style={prepareStyles(mergedStyles)}
..
>
注意:IconButton 不再支持 iconStyle 属性 Material UI 使此答案过时
您必须在 <IconButton>
的 iconStyle
属性中设置图标的大小。下面的示例 from the material-ui docs.
根据我的经验,如果您只设置高度或宽度,则什么也不会发生——只有当您将高度和宽度设置为相同的值时才有效。
import React from 'react';
import IconButton from 'material-ui/IconButton';
import ActionHome from 'material-ui/svg-icons/action/home';
const styles = {
largeIcon: {
width: 60,
height: 60,
},
};
const IconButtonExampleSize = () => (
<div>
<IconButton
iconStyle={styles.largeIcon}
>
<ActionHome />
</IconButton>
</div>
);
这样做
<SomeIcon className="svg_icons"/>
.svg_icons {
transform: scale(1.8);
}
只需使用比例尺 :D 就可以了
我正在使用 IconStyle 属性来更改 svg 图标的大小。
<IconButton
tooltip="Add New Group"
tooltipPosition="top-center"
style={{padding: 0, height: 0}}
iconStyle={{height: 31, width: 48}}
onClick={e => this.openNewList()}
disabled={!this.state.newAvailable}>
<ActionHome />
</IconButton>
使用最新版本material-ui (3.1.0),您可以更改IconButton 的padding 和SvgIcon 的fontSize 以更新外观。
const styles = theme => ({
smallButton: {
padding: 6
},
largeButton: {
padding: 24
},
largeIcon: {
fontSize: "3em"
},
input: {
display: "none"
}
});
function IconButtons(props) {
const { classes } = props;
return (
<div>
<IconButton className={classes.smallButton} aria-label="Delete">
<DeleteIcon fontSize="small" />
</IconButton>
<IconButton aria-label="Delete">
<DeleteIcon fontSize="large" />
</IconButton>
<IconButton className={classes.largeButton} aria-label="Delete">
<DeleteIcon className={classes.largeIcon} />
</IconButton>
</div>
);
}
我在使用最新的 React 版本(今天是 v16.13.1)和 Material-ui(今天是 v4.9.14)时遇到了同样的问题。
我是怎么解决的?
只需将此样式添加到图标按钮即可
MyIconButton: {
'& svg': {
fontSize: theSizeIWant
}
}
完整示例
import React from "react";
import { makeStyles } from '@material-ui/core/styles';
import IconButton from '@material-ui/core/IconButton';
import DeleteIcon from '@material-ui/icons/Delete';
const useStyles = makeStyles((theme) => ({
deleteIcon1: {
'& svg': {
fontSize: 25
}
},
deleteIcon2: {
'& svg': {
fontSize: 50
}
},
deleteIcon3: {
'& svg': {
fontSize: 75
}
},
deleteIcon4: {
'& svg': {
fontSize: 100
}
}
}));
export default function App() {
const classes = useStyles();
return (
<div className="App">
<h1>fontSize: 25</h1>
<IconButton className={classes.deleteIcon1}>
<DeleteIcon />
</IconButton>
<h1>fontSize: 50</h1>
<IconButton className={classes.deleteIcon2}>
<DeleteIcon />
</IconButton>
<h1>fontSize: 75</h1>
<IconButton className={classes.deleteIcon3}>
<DeleteIcon />
</IconButton>
<h1>fontSize: 100</h1>
<IconButton className={classes.deleteIcon4}>
<DeleteIcon />
</IconButton>
</div>
);
}
结果将是:
直播运行码
我创建了 this codesandbox。
希望对您有所帮助!
您可以只在 IconButton 元素的子节点上使用 fontSize 属性,即在您的情况下 - ContentAdd 节点。
<IconButton
style={styleForButton}
touch={true}
tooltip="Add New Widget">
<ContentAdd fontSize="large" />
</IconButton>
有 4 个选项可用 - 继承、默认、小和大。
没有。大多数其他答案都不能令人满意并且是糟糕的做法,至少在 2021 年是这样。这个答案在 documentation here 中得到了字面上的回答,并且不需要任何 CSS 技巧就可以开始工作。
在 MUI 中,Button
和 IconButton
组件本质上只是将 child Icon
元素嵌套在 <a>
或 [=17] 中的包装器=] (react-router) 元素。他们对大小没有任何内在控制。因此,要增加按钮大小,只需使用 fontSize
属性 增加 Icon
child 或 IconButton
的大小。这将自动使按钮变大。
例如,要使下面的 IconButton
变大:
<IconButton>
<Icon />
</IconButton>
我们直接增加 Icon
child 的大小。
<IconButton>
<Icon fontSize="large" />
</IconButton>
但是,这是您可以使用 fontSize
属性 指定的最大尺寸。要变得更大,我们必须手动配置 CSS font-size
属性。
<IconButton>
<Icon style={{ fontSize: 60 }} />
</IconButton>
简单如.
编辑:显然,无论出于何种原因,Button
组件有一个 size
属性 允许控制它们的大小,但 IconButton
组件没有。我不确定为什么 MUI 如此不一致...
总有简单的事情要做
give an classname to your material ui icon
And go to your css file and give
height:40px !important and width 40px !impoetant
假设您使用 Sass:
.divWithTargetSVG {
.MuiSvgIcon-root {
font-size: Xrem/px;
}
}
这对我有用
fontSize="大"
<Badge badgeContent={4} color="primary" >
<CameraAltIcon fontSize="large" />
</Badge>
看道具 --> fontSize
当您的全球项目需要它时,您可以向 MUI 主题添加一个新变体。
components: {
MuiSvgIcon: {
variants: [
{
props: { fontSize: 'huge' },
style: {
fontSize: '5rem',
},
},
],
},
}
为了使其适用于 TS,您可能需要扩展模块声明:
declare module '@mui/material/SvgIcon' {
interface SvgIconPropsSizeOverrides {
huge: true;
}
}
用法:
<HomeIcon fontSize="huge" />
我也在dev.to
上写了一点post
如果 className={ classes.classname } , fontSize : '40px' , size= 'large' 等不起作用然后尝试内联样式,您可以根据需要提供高度和宽度尺寸
<OpenInNewIcon style={{ height: '18px', width: '18px' }} />
希望有用,
调整大小使用
fontSize
<Box sx={{ fontSize: '2rem' }}>
<CloseIcon sx={{ fill: 'white', fontSize: 'inherit', mt: 0.375 }} />
</Box>
width
或height
<Box sx={{ width: '15vw' }}>
<CloseIcon sx={{ fill: 'white', width: '100%', height: '100%', mt: 0.375 }} />
</Box>
有人使用 react.js and the Material UI 库构建网页吗?我应该如何调整图标大小?它是一个 svg 图标。 我刚刚构建了一个 "create new" 组件,它是一张 material 纸,顶部有一个内容添加按钮。这是代码。
import React from 'react';
import Paper from 'material-ui/lib/paper';
import ContentAdd from 'material-ui/lib/svg-icons/content/add';
import IconButton from 'material-ui/lib/icon-button';
const styleForPaper = {
width: '96vw',
height: '20vh',
margin: 20,
textAlign: 'center',
display: 'inline-block',
};
const styleForButton = {
'marginTop': '7vh',
};
const PaperToAddNewWidgets = () => (
<div>
<Paper style={styleForPaper} zDepth={2}>
<IconButton
style={styleForButton}
touch={true}
tooltip="Add New Widget">
<ContentAdd/>
</IconButton>
</Paper>
</div>
);
export default PaperToAddNewWidgets;
它看起来不错(确保您以全尺寸查看它),但图标太小了。然后我打开 chrome 开发工具,看到下面的 html 代码。
<div style="background-color:#ffffff;transition:all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;box-sizing:border-box;font-family:Roboto, sans-serif;-webkit-tap-highlight-color:rgba(0,0,0,0);box-shadow:0 3px 10px rgba(0,0,0,0.16),
0 3px 10px rgba(0,0,0,0.23);border-radius:2px;width:96vw;height:20vh;margin:20px;text-align:center;display:inline-block;mui-prepared:;" data-reactid=".0.2.0.1.0"><button style="border:10px;background:none;box-sizing:border-box;display:inline-block;font:inherit;font-family:Roboto, sans-serif;tap-highlight-color:rgba(0, 0, 0, 0);cursor:pointer;text-decoration:none;outline:none;transform:translate3d(0, 0, 0);position:relative;transition:all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;padding:12px;width:48px;height:48px;font-size:0;margin-top:7vh;mui-prepared:;-webkit-appearance:button;" tabindex="0" type="button" data-reactid=".0.2.0.1.0.0"><div data-reactid=".0.2.0.1.0.0.0"><span style="height:100%;width:100%;position:absolute;top:0;left:0;overflow:hidden;mui-prepared:;" data-reactid=".0.2.0.1.0.0.0.0"></span><div style="position: absolute; font-family: Roboto, sans-serif; font-size: 14px; line-height: 32px; padding: 0px 16px; z-index: 3000; color: rgb(255, 255, 255); overflow: hidden; top: -10000px; border-radius: 2px; opacity: 0; left: -44px; transition: top 0ms cubic-bezier(0.23, 1, 0.32, 1) 450ms, transform 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms, opacity 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; box-sizing: border-box; -webkit-user-select: none;" data-reactid=".0.2.0.1.0.0.0.1:0"><div style="position: absolute; left: 50%; top: 0px; transform: translate(-50%, -50%); border-radius: 50%; transition: width 0ms cubic-bezier(0.23, 1, 0.32, 1) 450ms, height 0ms cubic-bezier(0.23, 1, 0.32, 1) 450ms, backgroundColor 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; width: 0px; height: 0px; background-color: transparent;" data-reactid=".0.2.0.1.0.0.0.1:0.0"></div><span style="position:relative;white-space:nowrap;mui-prepared:;" data-reactid=".0.2.0.1.0.0.0.1:0.1">Add New Widget</span></div><svg style="display:inline-block;height:24px;width:24px;transition:all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;fill:rgba(0, 0, 0, 0.87);mui-prepared:;-webkit-user-select:none;" viewBox="0 0 24 24" data-reactid=".0.2.0.1.0.0.0.1:2:$/=10"><path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" data-reactid=".0.2.0.1.0.0.0.1:2:$/=10.0"></path></svg></div></button></div>
使用chrome 开发工具,我修改了svg 图标大小和svg 的viewbox 属性 并使图标在浏览器中变大。但我不确定如何在我的代码中调整图标大小。如果我写一个 CSS 文件来修改 svg,如果有多个 svg 元素,就会有问题。
svg有两种放大方式,一种是override the style with iconStyle, the other is to edit the code found in https://github.com/callemall/material-ui/blob/master/src/SvgIcon/SvgIcon.js
注意:ContentAdd
从 SvgIcon
const mergedStyles = Object.assign({
..
height: 24, // <-- change default height
width: 24, // <-- change default width
..
}, style);
return (
<svg
{...other}
..
style={prepareStyles(mergedStyles)}
..
>
注意:IconButton 不再支持 iconStyle 属性 Material UI 使此答案过时
您必须在 <IconButton>
的 iconStyle
属性中设置图标的大小。下面的示例 from the material-ui docs.
根据我的经验,如果您只设置高度或宽度,则什么也不会发生——只有当您将高度和宽度设置为相同的值时才有效。
import React from 'react';
import IconButton from 'material-ui/IconButton';
import ActionHome from 'material-ui/svg-icons/action/home';
const styles = {
largeIcon: {
width: 60,
height: 60,
},
};
const IconButtonExampleSize = () => (
<div>
<IconButton
iconStyle={styles.largeIcon}
>
<ActionHome />
</IconButton>
</div>
);
这样做
<SomeIcon className="svg_icons"/>
.svg_icons {
transform: scale(1.8);
}
只需使用比例尺 :D 就可以了
我正在使用 IconStyle 属性来更改 svg 图标的大小。
<IconButton
tooltip="Add New Group"
tooltipPosition="top-center"
style={{padding: 0, height: 0}}
iconStyle={{height: 31, width: 48}}
onClick={e => this.openNewList()}
disabled={!this.state.newAvailable}>
<ActionHome />
</IconButton>
使用最新版本material-ui (3.1.0),您可以更改IconButton 的padding 和SvgIcon 的fontSize 以更新外观。
const styles = theme => ({
smallButton: {
padding: 6
},
largeButton: {
padding: 24
},
largeIcon: {
fontSize: "3em"
},
input: {
display: "none"
}
});
function IconButtons(props) {
const { classes } = props;
return (
<div>
<IconButton className={classes.smallButton} aria-label="Delete">
<DeleteIcon fontSize="small" />
</IconButton>
<IconButton aria-label="Delete">
<DeleteIcon fontSize="large" />
</IconButton>
<IconButton className={classes.largeButton} aria-label="Delete">
<DeleteIcon className={classes.largeIcon} />
</IconButton>
</div>
);
}
我在使用最新的 React 版本(今天是 v16.13.1)和 Material-ui(今天是 v4.9.14)时遇到了同样的问题。
我是怎么解决的?
只需将此样式添加到图标按钮即可
MyIconButton: {
'& svg': {
fontSize: theSizeIWant
}
}
完整示例
import React from "react";
import { makeStyles } from '@material-ui/core/styles';
import IconButton from '@material-ui/core/IconButton';
import DeleteIcon from '@material-ui/icons/Delete';
const useStyles = makeStyles((theme) => ({
deleteIcon1: {
'& svg': {
fontSize: 25
}
},
deleteIcon2: {
'& svg': {
fontSize: 50
}
},
deleteIcon3: {
'& svg': {
fontSize: 75
}
},
deleteIcon4: {
'& svg': {
fontSize: 100
}
}
}));
export default function App() {
const classes = useStyles();
return (
<div className="App">
<h1>fontSize: 25</h1>
<IconButton className={classes.deleteIcon1}>
<DeleteIcon />
</IconButton>
<h1>fontSize: 50</h1>
<IconButton className={classes.deleteIcon2}>
<DeleteIcon />
</IconButton>
<h1>fontSize: 75</h1>
<IconButton className={classes.deleteIcon3}>
<DeleteIcon />
</IconButton>
<h1>fontSize: 100</h1>
<IconButton className={classes.deleteIcon4}>
<DeleteIcon />
</IconButton>
</div>
);
}
结果将是:
直播运行码
我创建了 this codesandbox。
希望对您有所帮助!
您可以只在 IconButton 元素的子节点上使用 fontSize 属性,即在您的情况下 - ContentAdd 节点。
<IconButton
style={styleForButton}
touch={true}
tooltip="Add New Widget">
<ContentAdd fontSize="large" />
</IconButton>
有 4 个选项可用 - 继承、默认、小和大。
没有。大多数其他答案都不能令人满意并且是糟糕的做法,至少在 2021 年是这样。这个答案在 documentation here 中得到了字面上的回答,并且不需要任何 CSS 技巧就可以开始工作。
在 MUI 中,Button
和 IconButton
组件本质上只是将 child Icon
元素嵌套在 <a>
或 [=17] 中的包装器=] (react-router) 元素。他们对大小没有任何内在控制。因此,要增加按钮大小,只需使用 fontSize
属性 增加 Icon
child 或 IconButton
的大小。这将自动使按钮变大。
例如,要使下面的 IconButton
变大:
<IconButton>
<Icon />
</IconButton>
我们直接增加 Icon
child 的大小。
<IconButton>
<Icon fontSize="large" />
</IconButton>
但是,这是您可以使用 fontSize
属性 指定的最大尺寸。要变得更大,我们必须手动配置 CSS font-size
属性。
<IconButton>
<Icon style={{ fontSize: 60 }} />
</IconButton>
简单如.
编辑:显然,无论出于何种原因,Button
组件有一个 size
属性 允许控制它们的大小,但 IconButton
组件没有。我不确定为什么 MUI 如此不一致...
总有简单的事情要做
give an classname to your material ui icon And go to your css file and give
height:40px !important and width 40px !impoetant
假设您使用 Sass:
.divWithTargetSVG {
.MuiSvgIcon-root {
font-size: Xrem/px;
}
}
这对我有用 fontSize="大"
<Badge badgeContent={4} color="primary" >
<CameraAltIcon fontSize="large" />
</Badge>
看道具 --> fontSize
当您的全球项目需要它时,您可以向 MUI 主题添加一个新变体。
components: {
MuiSvgIcon: {
variants: [
{
props: { fontSize: 'huge' },
style: {
fontSize: '5rem',
},
},
],
},
}
为了使其适用于 TS,您可能需要扩展模块声明:
declare module '@mui/material/SvgIcon' {
interface SvgIconPropsSizeOverrides {
huge: true;
}
}
用法:
<HomeIcon fontSize="huge" />
我也在dev.to
上写了一点post如果 className={ classes.classname } , fontSize : '40px' , size= 'large' 等不起作用然后尝试内联样式,您可以根据需要提供高度和宽度尺寸
<OpenInNewIcon style={{ height: '18px', width: '18px' }} />
希望有用,
调整大小使用
fontSize
<Box sx={{ fontSize: '2rem' }}> <CloseIcon sx={{ fill: 'white', fontSize: 'inherit', mt: 0.375 }} /> </Box>
width
或height
<Box sx={{ width: '15vw' }}> <CloseIcon sx={{ fill: 'white', width: '100%', height: '100%', mt: 0.375 }} /> </Box>