krishnamohan-yagneswaran-ui
Version:
A lightweight custom UI framework built by Krishnamohan Yagneswaran
17 lines (15 loc) • 402 B
JavaScript
import { krishna } from '../krishnamohan.js';
export function KrishnamohanAvatar({ src, alt = "Avatar", size = 64 }) {
return krishna.createElement("img", {
src,
alt,
style: `
width: ${size}px;
height: ${size}px;
border-radius: 50%;
object-fit: cover;
border: 2px solid #0077B6;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
`
});
}