Files
outline/shared/components/CustomEmoji.tsx
T
2025-12-01 02:31:50 +01:00

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;
`;