aboutsummaryrefslogtreecommitdiff
path: root/src/components/avatar.style.js
blob: 812d45a46f4a701d479f3fec47612022d37cb89f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export default {
  name: 'Avatar',
  selector: '.Avatar',
  variants: {
    compact: '.-compact'
  },
  defaultRules: [
    {
      directives: {
        roundness: 3,
        shadow: [{
          x: 0,
          y: 1,
          blur: 8,
          spread: 0,
          color: '#000000',
          alpha: 0.7
        }]
      }
    }
  ]
}