Skip to content

Instantly share code, notes, and snippets.

@vmohir
Created September 3, 2019 10:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vmohir/9a3b8ef6349174dfc65546f29432c747 to your computer and use it in GitHub Desktop.
Save vmohir/9a3b8ef6349174dfc65546f29432c747 to your computer and use it in GitHub Desktop.
@mixin svg-icon($icon_name) {
width: 16px;
display: inline-block;
&:before {
background: url('/assets/svg/#{$icon_name}');
content: '';
background-size: contain;
padding-bottom: 100%;
display: block;
}
}
.svg-m-react {
@include svg-icon('react-native.svg');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment