File size: 225 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 |
import type React from 'react';
export const iconStyle: React.CSSProperties = {
width: '100%',
height: 'auto',
padding: '0',
color: '#aaa',
textAlign: 'center',
minWidth: 64,
minHeight: 64,
maxHeight: 256,
};
|