import React, { FC } from "react" import * as SC from "./styles" interface IRoleProps { color: string } export const Role: FC = ({ children, color, ...props }) => { return ( {children} ) }