| 82 | |
| 83 | type Style = 'character' | 'shape' |
| 84 | interface Params |
| 85 | { |
| 86 | displayValue?: string |
| 87 | // this should be unique to user, it can be email, user id, or full name |
| 88 | value: string |
| 89 | size?: number |
| 90 | shadow?: boolean |
| 91 | style?: Style |
| 92 | |
| 93 | // toggle border |
| 94 | border?: boolean |
| 95 | borderSize?: number |
| 96 | borderColor?: string |
| 97 | radius?: number |
| 98 | } |
| 99 | |
| 100 | export default function Avvvatars(params: Params) |
| 101 | { |
nothing calls this directly
no outgoing calls
no test coverage detected