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
-
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