mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
430883f186
Towards #9278
8 lines
258 B
TypeScript
8 lines
258 B
TypeScript
import styled from "styled-components";
|
|
|
|
export const CustomEmoji = styled.img<{ size?: number }>`
|
|
width: ${(props) => (props.size ? `${props.size}px` : "16px")};
|
|
height: ${(props) => (props.size ? `${props.size}px` : "16px")};
|
|
object-fit: contain;
|
|
`;
|