Replies: 1 comment
-
should look like ...shorthands.padding('5px', '8px') |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
import {
Button,
makeStyles,
shorthands,
} from '@fluentui/react-components';
const useButtonClasses = makeStyles({
root: {
...shorthands.padding('5px 8px'),
...shorthands.borderRadius('8px'),
color: 'green',
minWidth: '20px',
minHeight: '8px',
backgroundColor: 'red',
},
});
const Button: React.FC = ({
children,
}) => {
const classes = useButtonClasses();
return (
Button
);
};
Beta Was this translation helpful? Give feedback.
All reactions