import React from "react" import * as SC from "./styles" interface IStackedAvatarsProps { authors: any } export function StackedAvatars({ authors }: IStackedAvatarsProps) { return ( {authors.map((author, index) => ( ))} ) }