@use "../../../styles/tokens/color";
@use "../../../styles/tokens/space";
@use "../../../styles/tools/convert";

$sizes: (
  default: (
    width: convert.to-rem(40px),
    height: convert.to-rem(40px),
    margin-right: space.get("small"),
  ),
  large: (
    width: convert.to-rem(50px),
    height: convert.to-rem(50px),
    margin-right: space.get(),
  ),
);
