platform/packages/ui/src/components/IconWithEmojii.svelte
Andrey Sobolev 239d4da6ce
TSK-1098: My issues list (#3137)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2023-05-04 19:34:51 +07:00

74 lines
1.6 KiB
Svelte

<!--
// Copyright © 2022 Hardcore Engineering Inc.
//
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License. You may
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
// See the License for the specific language governing permissions and
// limitations under the License.
-->
<script lang="ts">
import { IconSize } from '../types'
export let icon: number
export let size: IconSize
let value: string = ''
$: try {
value = String.fromCodePoint(icon)
} catch (err) {}
</script>
<div class="emojii-{size} flex-row-center emojii">
{value}
</div>
<style lang="scss">
.emojii {
display: flex;
align-items: center;
justify-content: center;
color: black;
}
.emojii-inline {
width: 1em;
height: 1em;
font-size: 1rem;
}
.emojii-x-small {
width: 0.75rem;
height: 0.75rem;
font-size: 0.75rem;
}
.emojii-small {
width: 1rem;
height: 1rem;
font-size: 1rem;
}
.emojii-medium {
width: 1.25rem;
height: 1.25rem;
font-size: 1.25rem;
}
.emojii-large {
width: 1.5rem;
height: 1.5rem;
font-size: 1.5rem;
}
.semojiivg-full {
width: inherit;
height: inherit;
}
.emojii-x-small,
.emojii-small,
.emojii-medium,
.emojii-large {
flex-shrink: 0;
}
</style>