We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75955cc commit edc74ebCopy full SHA for edc74eb
1 file changed
src/app/image_generator/presetSize.ts
@@ -4,6 +4,13 @@ export const PRESET_SIZES = [
4
{
5
label: '基本サイズ',
6
options: [
7
+ {
8
+ label: '32x32',
9
+ value: {
10
+ width: 32,
11
+ height: 32,
12
+ },
13
14
15
label: '100x100',
16
value: {
@@ -166,6 +173,25 @@ export const PRESET_SIZES = [
166
173
},
167
174
],
168
175
176
177
+ label: 'Web',
178
+ options: [
179
180
+ label: 'favicon 16x16',
181
182
+ width: 16,
183
+ height: 16,
184
185
186
187
+ label: 'スマホのホーム画面アイコン 180x180',
188
189
+ width: 180,
190
+ height: 180,
191
192
193
+ ],
194
169
195
];
170
196
171
197
export const PRESET_SIZE_OPTIONS = PRESET_SIZES.map(({ label, options }) => ({
0 commit comments