Remove usage of tiley (#4406)
* First pass * Mooarrr * lint * snapshots
This commit is contained in:
@@ -1,10 +1,7 @@
|
||||
import styled from "styled-components";
|
||||
import Avatar from "./Avatar";
|
||||
|
||||
const TeamLogo = styled.img<{ width?: number; height?: number; size?: string }>`
|
||||
width: ${(props) =>
|
||||
props.width ? `${props.width}px` : props.size || "auto"};
|
||||
height: ${(props) =>
|
||||
props.height ? `${props.height}px` : props.size || "38px"};
|
||||
const TeamLogo = styled(Avatar)`
|
||||
border-radius: 4px;
|
||||
border: 1px solid ${(props) => props.theme.divider};
|
||||
overflow: hidden;
|
||||
|
||||
Reference in New Issue
Block a user